CS on constants
This commit is contained in:
parent
b812deefa1
commit
aa6b6863b8
1 changed files with 43 additions and 27 deletions
|
@ -1,13 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/**
|
||||||
* Define constants used in all the application.
|
* Define constants used in all the application.
|
||||||
* Some constants are based on variables from configuration file.
|
* Some constants are based on variables from configuration file.
|
||||||
|
*
|
||||||
|
* SemanticScuttle - your social bookmark manager.
|
||||||
|
*
|
||||||
|
* PHP version 5.
|
||||||
|
*
|
||||||
|
* @category Bookmarking
|
||||||
|
* @package SemanticScuttle
|
||||||
|
* @subcategory Base
|
||||||
|
* @author Benjamin Huynh-Kim-Bang <mensonge@users.sourceforge.net>
|
||||||
|
* @author Christian Weiske <cweiske@cweiske.de>
|
||||||
|
* @author Eric Dane <ericdane@users.sourceforge.net>
|
||||||
|
* @license GPL http://www.gnu.org/licenses/gpl.html
|
||||||
|
* @link http://sourceforge.net/projects/semanticscuttle
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Debug managament
|
// Debug managament
|
||||||
if(isset($GLOBALS['debugMode'])) {
|
if (isset($GLOBALS['debugMode'])) {
|
||||||
define('DEBUG_MODE', $GLOBALS['debugMode']);
|
define('DEBUG_MODE', $GLOBALS['debugMode']);
|
||||||
define('DEBUG_EXTRA', $GLOBALS['debugMode']); // Constant used exclusively into db/ directory
|
// Constant used exclusively into db/ directory
|
||||||
|
define('DEBUG_EXTRA', $GLOBALS['debugMode']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determine the base URL as ROOT
|
// Determine the base URL as ROOT
|
||||||
|
@ -46,18 +60,20 @@ define('PAGE_WATCHLIST', "watchlist");
|
||||||
|
|
||||||
// Miscellanous
|
// Miscellanous
|
||||||
|
|
||||||
// INSTALLATION_ID is based on directory DB and used as prefix (in session and cookie) to prevent mutual login for different installations on the same host server
|
// INSTALLATION_ID is based on directory DB and used as prefix
|
||||||
|
// (in session and cookie) to prevent mutual login for different
|
||||||
|
// installations on the same host server
|
||||||
define('INSTALLATION_ID', md5($GLOBALS['dbname'].$GLOBALS['tableprefix']));
|
define('INSTALLATION_ID', md5($GLOBALS['dbname'].$GLOBALS['tableprefix']));
|
||||||
|
|
||||||
// Correct bugs with PATH_INFO (maybe for Apache 1 or CGI) -- for 1&1 host...
|
// Correct bugs with PATH_INFO (maybe for Apache 1 or CGI) -- for 1&1 host...
|
||||||
if (isset($_SERVER['PATH_INFO']) && isset($_SERVER['ORIG_PATH_INFO'])) {
|
if (isset($_SERVER['PATH_INFO']) && isset($_SERVER['ORIG_PATH_INFO'])) {
|
||||||
if(strlen($_SERVER["PATH_INFO"])<strlen($_SERVER["ORIG_PATH_INFO"])) {
|
if (strlen($_SERVER["PATH_INFO"])<strlen($_SERVER["ORIG_PATH_INFO"])) {
|
||||||
$_SERVER["PATH_INFO"] = $_SERVER["ORIG_PATH_INFO"];
|
$_SERVER["PATH_INFO"] = $_SERVER["ORIG_PATH_INFO"];
|
||||||
}
|
}
|
||||||
if(strcasecmp($_SERVER["PATH_INFO"], $_SERVER["SCRIPT_NAME "]) == 0) {
|
if (strcasecmp($_SERVER["PATH_INFO"], $_SERVER["SCRIPT_NAME "]) == 0) {
|
||||||
unset($_SERVER["PATH_INFO"]);
|
unset($_SERVER["PATH_INFO"]);
|
||||||
}
|
}
|
||||||
if(strpos($_SERVER["PATH_INFO"], '.php') !== false) {
|
if (strpos($_SERVER["PATH_INFO"], '.php') !== false) {
|
||||||
unset($_SERVER["PATH_INFO"]);
|
unset($_SERVER["PATH_INFO"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue