Changeset 1077
- Timestamp:
- 2012-07-29T08:35:59+02:00 (11 months ago)
- Location:
- trunk/htdocs
- Files:
-
- 4 edited
-
common/common.php (modified) (2 diffs)
-
coverager/common.php (modified) (1 diff)
-
coverager/coverager.php (modified) (2 diffs)
-
coverager/index.php (modified) (1 diff)
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(); -
trunk/htdocs/coverager/common.php
r1053 r1077 3 3 require_once "../common/common.php"; 4 4 5 include (get_language_file("coverager"));5 include get_language_file("coverager"); 6 6 $module = "coverager"; 7 7 -
trunk/htdocs/coverager/coverager.php
r1053 r1077 1 1 <?php 2 2 3 include ("./common.php");3 include "./common.php"; 4 4 5 5 class XcacheCoverageViewer … … 108 108 109 109 global $config; 110 include ("coverager.tpl.php");110 include "coverager.tpl.php"; 111 111 } 112 112 -
trunk/htdocs/coverager/index.php
r393 r1077 1 1 <?php 2 2 3 include ("coverager.php");3 include "coverager.php";
Note: See TracChangeset
for help on using the changeset viewer.

