Changeset 1077 for trunk/htdocs/common/common.php
- Timestamp:
- 07/29/2012 08:35:59 AM (10 months ago)
- Files:
-
- 1 modified
-
trunk/htdocs/common/common.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/common/common.php
r1070 r1077 46 46 "http://xcache.lighttpd.net/" => "XCache", 47 47 "http://xcache.lighttpd.net/wiki/DocTOC" => _("Document"), 48 "http://xcache.lighttpd.net/wiki/PhpIni" => _("INI Setting"), 48 49 "http://xcache.lighttpd.net/wiki/GetSupport" => _("Get Support"), 49 50 "https://groups.google.com/group/xcache/" => _("Discusson"), … … 245 246 $config = array(); 246 247 if (file_exists("./config.default.php")) { 247 include ("./config.default.php");248 } 249 include ("../config.default.php");248 include "./config.default.php"; 249 } 250 include "../config.default.php"; 250 251 if (file_exists("../config.php")) { 251 include ("../config.php");252 include "../config.php"; 252 253 } 253 254 if (file_exists("./config.php")) { 254 include ("./config.php");255 include "./config.php"; 255 256 } 256 257 257 258 $strings = array(); 258 include (get_language_file("../common/common"));259 include get_language_file("../common/common"); 259 260 260 261 $modules = array();

