From 5a46e73fefb16444321e2b7638caf147eb0dc2a7 Mon Sep 17 00:00:00 2001 From: skeeter Date: Thu, 14 Feb 2002 02:22:17 +0000 Subject: [PATCH] minor rewrite of a set of "e; to ' and changing the comment to say ExecMethod instead of ExecObject. --- phpgwapi/inc/functions.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpgwapi/inc/functions.inc.php b/phpgwapi/inc/functions.inc.php index 9fe5c48fb7..46d6a4558e 100644 --- a/phpgwapi/inc/functions.inc.php +++ b/phpgwapi/inc/functions.inc.php @@ -310,7 +310,7 @@ } /* error_reporting(0); */ - list($appname,$classname) = explode(".", $class); + list($appname,$classname) = explode('.', $class); if (!isset($GLOBALS['phpgw_info']['flags']['included_classes'][$classname]) || !$GLOBALS['phpgw_info']['flags']['included_classes'][$classname]) @@ -357,7 +357,7 @@ } /*! - @function ExecObject + @function ExecMethod @abstract Execute a function, and load a class and include the class file if not done so already. @author seek3r @discussion This function is used to create an instance of a class, and if the class file has not been included it will do so.