From 2b521ce65d0ae839453ddd6335cfa59f7aa37ea4 Mon Sep 17 00:00:00 2001 From: abraar Date: Mon, 3 Jan 2011 13:49:50 +0000 Subject: [PATCH] removed '@' --- gulliver/thirdparty/pear/DB.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulliver/thirdparty/pear/DB.php b/gulliver/thirdparty/pear/DB.php index 8af3f65a5..d866c4d25 100644 --- a/gulliver/thirdparty/pear/DB.php +++ b/gulliver/thirdparty/pear/DB.php @@ -307,7 +307,7 @@ class DB return $tmp; } - @$obj = new $classname; + $obj = new $classname; foreach ($options as $option => $value) { $test = $obj->setOption($option, $value); @@ -381,7 +381,7 @@ class DB return $tmp; } - @$obj = new $classname; + $obj = new $classname; foreach ($options as $option => $value) { $test = $obj->setOption($option, $value);