1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Fixed parse error

This commit is contained in:
mcfly
2008-02-01 11:52:27 +00:00
parent 6610c92dac
commit 4176a5c898

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_handlers/plugin_class.php,v $ | $Source: /cvs_backup/e107_0.8/e107_handlers/plugin_class.php,v $
| $Revision: 1.21 $ | $Revision: 1.22 $
| $Date: 2008-01-28 02:49:50 $ | $Date: 2008-02-01 11:52:27 $
| $Author: mcfly_e107 $ | $Author: mcfly_e107 $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -234,7 +234,7 @@ class e107plugin
if(!is_array($getinfo_results)) { $getinfo_results = array(); } if(!is_array($getinfo_results)) { $getinfo_results = array(); }
$id = (int)$id; $id = (int)$id;
if(!isset($getinfo_results[$id] || $force == true)) if(!isset($getinfo_results[$id]) || $force == true)
{ {
if ($sql->db_Select('plugin', '*', "plugin_id = ".$id)) if ($sql->db_Select('plugin', '*', "plugin_id = ".$id))
{ {