From cbafcfb2e559ac72e5d84c96b82d20a9790ccccc Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 17 Oct 2005 00:37:13 +0000 Subject: [PATCH] Removed 3 $SOMETHING variables at the top of modules; used in 1.0.x-style instantiation --- date.php | 4 ---- db_mysql.php | 4 ---- functions.php | 4 ---- localize.php | 4 ---- mail.php | 4 ---- template.php | 4 ---- template_fs.php | 9 +-------- xml.php | 4 ---- 8 files changed, 1 insertion(+), 36 deletions(-) diff --git a/date.php b/date.php index 0a23ed1..7783dfa 100644 --- a/date.php +++ b/date.php @@ -26,10 +26,6 @@ * @package ISSO */ -$OBJECT = 'Date Formatting System'; -$CLASS = 'Date_Formatter'; -$OBJ = 'datef'; - /** * Defined constant time */ diff --git a/db_mysql.php b/db_mysql.php index 4f87026..0afcfed 100644 --- a/db_mysql.php +++ b/db_mysql.php @@ -26,10 +26,6 @@ * @package ISSO */ -$OBJECT = 'MySQL Database Abstraction Layer'; -$CLASS = 'MySQL_Database_Driver'; -$OBJ = 'db'; - /** * MySQL Database Abstraction Layer * diff --git a/functions.php b/functions.php index 0c3edc9..b1e59b8 100644 --- a/functions.php +++ b/functions.php @@ -26,10 +26,6 @@ * @package ISSO */ -$OBJECT = 'Core Functions'; -$CLASS = 'Functions'; -$OBJ = 'funct'; - /** * Globalized Functions * diff --git a/localize.php b/localize.php index b769eb2..250460d 100644 --- a/localize.php +++ b/localize.php @@ -26,10 +26,6 @@ * @package ISSO */ -$OBJECT = 'Localization System'; -$CLASS = 'Localize'; -$OBJ = 'lang'; - /** * Localization System * diff --git a/mail.php b/mail.php index 8853670..ede3d96 100644 --- a/mail.php +++ b/mail.php @@ -26,10 +26,6 @@ * @package ISSO */ -$OBJECT = 'Mail Sender'; -$CLASS = 'Mail'; -$OBJ = 'mail'; - /** * Mail Sender * diff --git a/template.php b/template.php index 68d71ea..0247223 100644 --- a/template.php +++ b/template.php @@ -26,10 +26,6 @@ * @package ISSO */ -$OBJECT = 'Database Template System'; -$CLASS = 'DB_Template'; -$OBJ = 'template'; - /** * Database-Driven Template System * diff --git a/template_fs.php b/template_fs.php index f23db81..882a551 100644 --- a/template_fs.php +++ b/template_fs.php @@ -26,14 +26,7 @@ * @package ISSO */ -if (!$this->is_loaded('template')) -{ - $this->load('template', null); -} - -$OBJECT = 'File-Based Template System'; -$CLASS = 'FS_Template'; -$OBJ = 'template'; +$this->load('template', null); /** * File System Template System diff --git a/xml.php b/xml.php index 95201b0..e8eef16 100644 --- a/xml.php +++ b/xml.php @@ -26,10 +26,6 @@ * @package ISSO */ -$OBJECT = 'XML Parser'; -$CLASS = 'XML_Parser'; -$OBJ = 'xml'; - /** * XML Parser * -- 2.43.5