root/releases/0.1.2a/units/engine/function_init.php

Revision 7, 391 bytes (checked in by sven, 3 years ago)

snapshot of elgg 0.1.2a

Line 
1 <?php
2
3     // Plug-in engine intialisation routines
4     
5     // Global log arrays
6         global $log;
7         global $errorlog;
8         global $actionlog;
9         $log = array();
10         $errorlog = array();
11         $actionlog = array();
12     
13     // Message arrays
14         global $messages;
15         $messages = array();
16         
17     // Add the site root to the metatags
18         global $metatags;
19         // $metatags .= "     <base href=\"".url."\" />";
20
21 ?>
Note: See TracBrowser for help on using the browser.