From 56100344cf664e3a0be1692af8b9ad4e3512da99 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 21 Jan 2006 23:58:20 +0000 Subject: [PATCH] s/$GLOBALS['isso:null-framework']/$GLOBALS['isso:callback']/g --- dev/changes.txt | 2 +- installer.css.php | 6 +++--- installer.php | 8 ++++---- kernel.php | 8 ++++---- printer.css.php | 14 +++++++------- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/dev/changes.txt b/dev/changes.txt index 36a52ff..73143cb 100644 --- a/dev/changes.txt +++ b/dev/changes.txt @@ -29,5 +29,5 @@ CHANGELOG FOR 2.0 - Renamed the kernel class from Shared_Object_Framework to ISSO [kernel.php] - Moved Mail::_convert_line_breaks() to Functions::convert_line_breaks() - Optimized the rand() function [functions.php] -- Objects no longer use $_isso as a call back, but rather $this->registry (in objects) or $GLOBALS['isso:null-framework'] (in global scope) +- Objects no longer use $_isso as a call back, but rather $this->registry (in objects) or $GLOBALS['isso:callback'] (in global scope) - Added explain_error_reporting() so you can get an overview of all the constants and if they're enabled [kernel.php] diff --git a/installer.css.php b/installer.css.php index fcbb703..35344a7 100755 --- a/installer.css.php +++ b/installer.css.php @@ -23,13 +23,13 @@ error_reporting(E_ALL & ~E_NOTICE); $included = true; -if (!isset($GLOBALS['isso:null-framework'])) +if (!isset($GLOBALS['isso:callback'])) { - if (!method_exists($GLOBALS['isso:null-framework'], 'load')) + if (!method_exists($GLOBALS['isso:callback'], 'load')) { $included = false; $path = (isset($_SERVER['SCRIPT_URL']) ? $_SERVER['SCRIPT_URL'] : $_SERVER['REQUEST_URI']); - $GLOBALS['isso:null-framework']->webpath = dirname($path) . '/'; + $GLOBALS['isso:callback']->webpath = dirname($path) . '/'; } } diff --git a/installer.php b/installer.php index 31899fa..1f47322 100644 --- a/installer.php +++ b/installer.php @@ -34,14 +34,14 @@ */ function page_start() { - require_once($GLOBALS['isso:null-framework']->sourcepath . 'installer.css.php'); + require_once($GLOBALS['isso:callback']->sourcepath . 'installer.css.php'); ?> - <?= $GLOBALS['isso:null-framework']->application ?> Installer + <?= $GLOBALS['isso:callback']->application ?> Installer