Changeset 1527
- Timestamp:
- 01/24/08 13:43:36 (7 months ago)
- Files:
-
- devel/includes.php (modified) (3 diffs)
- devel/lib/elgglib.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/includes.php
r1461 r1527 15 15 <h1>Elgg isn't ready to run just yet.</h1> 16 16 <p> 17 There is n't a whole lot of work to do to get up and running, but17 There is not a whole lot of work to do to get up and running, but 18 18 there is a bit. Here's what you have to do: 19 19 </p> … … 53 53 </head> 54 54 <body> 55 <h1>Elgg still is n't ready to run just yet. (Sorry.)</h1>55 <h1>Elgg still is not ready to run just yet. (Sorry.)</h1> 56 56 <p> 57 57 You're going to need to rename the <i>htaccess-dist</i> file that … … 104 104 ****************************************************************************/ 105 105 106 107 // Load setup.php which will initialize database connections and such like. 108 require_once($CFG->dirroot.'lib/setup.php'); 109 106 110 // Language / internationalisation 107 111 //@todo All the libraries has a strong dependence with this 'plugin' 108 112 require_once($CFG->dirroot . "mod/gettext/lib.php"); 109 113 110 // Load setup.php which will initialize database connections and such like.111 require_once($CFG->dirroot.'lib/setup.php');112 114 113 115 // Plug-in engine (must be loaded first) devel/lib/elgglib.php
r1514 r1527 3401 3401 if((!empty($_COOKIE[AUTH_COOKIE])) && $ticket = md5($_COOKIE[AUTH_COOKIE])) { 3402 3402 if ($user = get_record('users','code',$ticket)) { 3403 $USER = $user; 3403 $user = (array) $user; 3404 foreach ($user as $attr => $val){ 3405 $USER->$attr = $val; 3406 } 3404 3407 3405 3408 /*** TODO: Create Proper Abstraction Interface - don't use file binding -- ugh ***/
