phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] api/core_functions.inc.php, 1.1.1.1.2.25


From: nomail
Subject: [Phpgroupware-cvs] api/core_functions.inc.php, 1.1.1.1.2.25
Date: Tue, 22 Jun 2004 16:15:46 +0200

Update of /api
Modified Files:
        Branch: proposal-branch
          core_functions.inc.php

date: 2004/06/22 14:15:46;  author: dcech;  state: Exp;  lines: +1 -15

Log Message:
new input parser for xmlrpc interface
moved some environment initialisation stuff from core_functions.inc.php into 
starter.inc.php
moved interface check code into class.interface.php
=====================================================================
Index: api/core_functions.inc.php
diff -u api/core_functions.inc.php:1.1.1.1.2.24 
api/core_functions.inc.php:1.1.1.1.2.25
--- api/core_functions.inc.php:1.1.1.1.2.24     Wed Jun 16 17:34:38 2004
+++ api/core_functions.inc.php  Tue Jun 22 14:15:46 2004
@@ -55,12 +55,6 @@
                return $curbuffer;
        }
 
-       /* Will use phpgw_shutdown to handle things */
-       register_shutdown_function('phpgw_exit');
-       /* Now start catching all output. */
-       ob_start('phpgw_checkoutput');          
-       //ob_start();
-
        class performance_timer
        {
                var $data = Array();
@@ -143,9 +137,6 @@
                }
        }
 
-       $GLOBALS['performance_timer'] = new performance_timer();
-       $GLOBALS['performance_timer']->start('phpgw');
-       
        function __autoload($class)
        {
                if(!validate($class,'alphanumeric'))
@@ -154,11 +145,6 @@
                }
                list($appname,$classname) = explode('_',$class,2);
 
-               if(!(validate($appname,'alphanumeric') && 
validate($classname,'alphanumeric')))
-               {
-                       return;
-               }
-               
                if (class_exists($class))
                {
                        return TRUE;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]