From 56ffef1837a75c66b2de15a45f49202a79e73440 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 16 Oct 2005 21:47:22 +0000 Subject: [PATCH] Where we changed the class name we need to change the constructor name --- date.php | 2 +- db_mysql.php | 2 +- template.php | 2 +- template_fs.php | 2 +- xml.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/date.php b/date.php index 474cd45..0a23ed1 100644 --- a/date.php +++ b/date.php @@ -83,7 +83,7 @@ class Date /** * Constructor: sets the server's timezone */ - function Date_Formatter(&$registry) + function Date(&$registry) { $this->registry =& $registry; diff --git a/db_mysql.php b/db_mysql.php index 8b60ae4..4f87026 100644 --- a/db_mysql.php +++ b/db_mysql.php @@ -101,7 +101,7 @@ class DB_MySQL /** * Constructor */ - function MySQL_Database_Driver(&$registry) + function DB_MySQL(&$registry) { $this->registry =& $registry; } diff --git a/template.php b/template.php index 4fb4957..68d71ea 100644 --- a/template.php +++ b/template.php @@ -113,7 +113,7 @@ class Template /** * Constructor */ - function DB_Template(&$registry) + function Template(&$registry) { $this->registry =& $registry; } diff --git a/template_fs.php b/template_fs.php index cc4807e..f23db81 100644 --- a/template_fs.php +++ b/template_fs.php @@ -70,7 +70,7 @@ class Template_FS extends Template /** * Constructor */ - function FS_Template(&$registry) + function Template_FS(&$registry) { $this->registry =& $registry; } diff --git a/xml.php b/xml.php index b4e9ddc..95201b0 100644 --- a/xml.php +++ b/xml.php @@ -88,7 +88,7 @@ class XML /** * Constructor */ - function XML_Parser(&$registry) + function XML(&$registry) { $this->registry =& $registry; } -- 2.43.5