Changeset 3c68966 in git
- Timestamp:
- 2012-07-29T06:35:59Z (7 years ago)
- Branches:
- 3.0, 3.1, 3.2, master, trunk
- Children:
- c780bef
- Parents:
- d2671b7
- Location:
- htdocs
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
htdocs/common/common.php
rdbf5294 r3c68966 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(); -
htdocs/coverager/common.php
rd7303c3 r3c68966 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 -
htdocs/coverager/coverager.php
rd7303c3 r3c68966 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 -
htdocs/coverager/index.php
r07c4675 r3c68966 1 1 <?php 2 2 3 include ("coverager.php");3 include "coverager.php";
Note: See TracChangeset
for help on using the changeset viewer.