From 944d0e2acdc4b8c77ccf2e18cb43192825b1ffe5 Mon Sep 17 00:00:00 2001 From: Tony Landis Date: Wed, 25 Mar 2009 22:30:37 -0600 Subject: [PATCH] Bugfix [#9] --- plugins/db_mapping/PostNuke_726.php | 2 +- plugins/db_mapping/osCommerce_22.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/db_mapping/PostNuke_726.php b/plugins/db_mapping/PostNuke_726.php index 6f671b0b..b36e0dab 100644 --- a/plugins/db_mapping/PostNuke_726.php +++ b/plugins/db_mapping/PostNuke_726.php @@ -198,7 +198,7 @@ class map_POSTNUKE_726 function sync($id, $file) { $db_map = new db_mapping; - $this = $db_map->MAP_sync ($id, $file, $this); + $this &= $db_map->MAP_sync ($id, $file, $this); } diff --git a/plugins/db_mapping/osCommerce_22.php b/plugins/db_mapping/osCommerce_22.php index f333f8e2..2ab394d3 100644 --- a/plugins/db_mapping/osCommerce_22.php +++ b/plugins/db_mapping/osCommerce_22.php @@ -187,7 +187,7 @@ class map_OSCOMMERCE_22 function sync($id, $file) { $db_map = new db_mapping; - $this = $db_map->MAP_sync ($id, $file, $this); + $db_map->MAP_sync ($id, $file, $this); }