Changeset 1004 for devel/_elggadmin/lib.php
- Timestamp:
- 03/05/07 14:20:17 (2 years ago)
- Files:
-
- devel/_elggadmin/lib.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/_elggadmin/lib.php
r958 r1004 36 36 $CFG->templatesroot = $CFG->dirroot . "mod/template/templates/"; 37 37 } 38 if (!isset($CFG->profilelocation)) { 39 $CFG->profilelocation = $CFG->dirroot . "mod/profile/"; 40 } 38 41 39 42 // Check logins etc … … 76 79 } 77 80 78 // Set the templates root if it doesn't exist81 // Set the templates root and profile location if they don't exist 79 82 if (!isset($CFG->templatesroot)) { 80 83 $CFG->templatesroot = $CFG->dirroot . "mod/template/templates/"; 84 } 85 86 if (!isset($CFG->profilelocation)) { 87 $CFG->profilelocation = $CFG->dirroot . "mod/profile/"; 81 88 } 82 89
