Removing calls to check_isso_fields()
authorRobert Sesek <rsesek@bluestatic.org>
Thu, 12 Oct 2006 05:13:07 +0000 (05:13 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Thu, 12 Oct 2006 05:13:07 +0000 (05:13 +0000)
db.php
db_postgresql.php
kernel.php
printer.php
template.php

diff --git a/db.php b/db.php
index f7f5054126443af54f72e110f7c0c4c70dcfca1b..0094d906483db54465f83cf7ac02fe77fbd65cef 100644 (file)
--- a/db.php
+++ b/db.php
@@ -186,8 +186,6 @@ class DB_Abstract
        */
        function connect($server, $user, $password, $database, $pconnect)
        {
-               $this->registry->check_isso_fields(get_class($this));
-               
                if ($this->dblink == false)
                {
                        $this->dblink = call_user_func(($pconnect ? $this->commands['pconnect'] : $this->commands['connect']), $server, $user, $password, $database);
index afac834d72a75f5e46148e18181020c706e52e1b..14eb382d266768cc376353943382aa3450689210 100644 (file)
@@ -131,7 +131,6 @@ class DB_PostgreSQL extends DB_Abstract
        */
        function command_pg_connect($server, $user, $password, $database)
        {
-               $this->registry->check_isso_fields(get_class($this));
                return pg_connect("host='$server' port={$this->port} user='$user' password='$password' dbname='$database'");
        }
        
@@ -150,7 +149,6 @@ class DB_PostgreSQL extends DB_Abstract
        */
        function command_pg_pconnect($server, $user, $password, $database)
        {
-               $this->registry->check_isso_fields(get_class($this));
                return pg_pconnect("host='$server' port={$this->port} user='$user' password='$password' dbname='$database'");
        }
        
index 1e27e780ea7960bb5dc5b51db781bf49851c0849..6e7e3af4f32e1948fb0ff7e4187c544893999466 100644 (file)
@@ -478,8 +478,6 @@ class ISSO
        */
        function &load($framework, $asobject, $globalize = false)
        {
-               $this->check_isso_fields(null);
-               
                // set the object interlock
                if (!method_exists($GLOBALS['isso:callback'], 'load'))
                {
index 414247333ece3a53522fc2b3d21dd9c0ea091b0d..dc7a24e459d36c8c91b964c3a13e3d0793dda789 100644 (file)
@@ -299,8 +299,6 @@ JS;
        */
        function page_start($actiontitle, $pageclass = null, $extra = '', $onload = false)
        {
-               $this->registry->check_isso_fields(get_class($this));
-               
                if ($this->registry->debug AND isset($_GET['query']))
                {
                        ob_start();
@@ -311,7 +309,7 @@ JS;
                        return;
                }
                
-               $title = sprintf(_('%1$s - %2$s - %3$s'), $this->registry->application, $this->realm, $actiontitle);
+               $title = sprintf(_('%1$s - %2$s - %3$s'), $this->registry->getApplication(), $this->realm, $actiontitle);
                
                echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
                echo "<html xml:lang=\"" . $this->language['langcode'] . "\" lang=\"" . $this->language['langcode'] . "\" dir=\"" . $this->language['direction'] . "\">\n<head>";
index c14337ee20d6c68fed18087ee4077c7318c050b6..0017e5edf144c1550568720e12cb243c5428e3a9 100644 (file)
@@ -361,8 +361,6 @@ class Template
        */
        function _parse($template)
        {
-               $this->registry->check_isso_fields(get_class($this));
-               
                $template = str_replace('"', '\"', $template);
                
                if (function_exists($this->pre_parse_hook))