Changeset 1068 in ExiteCMS for trunk/includes/core_functions.php


Ignore:
Timestamp:
11/06/07 00:40:02 (5 years ago)
Author:
hverton
Message:

Added the Webmaster Toolbox admin module
Fixed XHTML errors in the opentable/openside templates
Fixed XHTML in the admin index module
Fixed a query error in the members module (didn't filter suspended account when using a letter or country filter)
Converted the GeoIP update script to a Toolbox plugin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/core_functions.php

    r957 r1068  
    197197if (isset($_SERVER['SERVER_SOFTWARE'])) { 
    198198    // Common definitions - CGI mode 
     199    define("CMS_CLI", false); 
    199200    $_SERVER['QUERY_STRING'] = isset($_SERVER['QUERY_STRING']) ? cleanurl($_SERVER['QUERY_STRING']) : ""; 
    200201    $_SERVER['REQUEST_URI'] = isset($_SERVER['REQUEST_URI']) ? cleanurl($_SERVER['REQUEST_URI']) : ""; 
     
    208209} else { 
    209210    // Common definitions - CLI mode 
     211    define("CMS_CLI", true); 
    210212    define("USER_IP", '0.0.0.0'); 
    211213} 
Note: See TracChangeset for help on using the changeset viewer.