Skip to content

Commit

Permalink
fixed misplaced comments on CFG and USER globals
Browse files Browse the repository at this point in the history
  • Loading branch information
dhawes committed Sep 28, 2004
1 parent ca811dc commit 674fb52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/setup.php
Expand Up @@ -25,9 +25,9 @@
* - $USER->secret - The user's ?.
* - $USER->lang - The user's language choice.
*
* @global object(cfg) $CFG
* @global object(user) $USER
*/
global $CFG;
global $USER;
/**
* $USER is a global instance of a typical $user record.
*
Expand All @@ -36,9 +36,9 @@
* - $CFG->dataroot - Path to moodle index directory on server's filesystem.
* - $CFG->libroot - Path to moodle's library folder on server's filesystem.
*
* @global object(user) $USER
* @global object(cfg) $CFG
*/
global $USER;
global $CFG;
/**
* Definition of session type
* @global object(session) $SESSION
Expand Down

0 comments on commit 674fb52

Please sign in to comment.