From 49304b34aaeec6ff867b4af60372b9aa33585d1e Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Mon, 9 May 2005 22:46:05 +0000 Subject: [PATCH] - Fixing patch for aggregator block id fix. --- modules/aggregator.module | 6 +++--- modules/aggregator/aggregator.module | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/aggregator.module b/modules/aggregator.module index 9e8b9895510d..a6e2f34a8e0a 100644 --- a/modules/aggregator.module +++ b/modules/aggregator.module @@ -209,7 +209,7 @@ function aggregator_block($op, $delta = 0, $edit = array()) { } } else if ($op == 'configure') { - list($type, $id) = split(':', $delta); + list($type, $id) = explode('-', $delta); if ($type == 'category') { $value = db_result(db_query('SELECT block FROM {aggregator_category} WHERE cid = %d', $id)); } @@ -221,7 +221,7 @@ function aggregator_block($op, $delta = 0, $edit = array()) { return $output; } else if ($op == 'save') { - list($type, $id) = split(':', $delta); + list($type, $id) = explode('-', $delta); if ($type == 'category') { $value = db_query('UPDATE {aggregator_category} SET block = %d WHERE cid = %d', $edit['block'], $id); } @@ -230,7 +230,7 @@ function aggregator_block($op, $delta = 0, $edit = array()) { } } else if ($op == 'view') { - list($type, $id) = split(':', $delta); + list($type, $id) = explode('-', $delta); switch ($type) { case 'feed': if ($feed = db_fetch_object(db_query('SELECT fid, title, block FROM {aggregator_feed} WHERE fid = %d', $id))) { diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 9e8b9895510d..a6e2f34a8e0a 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -209,7 +209,7 @@ function aggregator_block($op, $delta = 0, $edit = array()) { } } else if ($op == 'configure') { - list($type, $id) = split(':', $delta); + list($type, $id) = explode('-', $delta); if ($type == 'category') { $value = db_result(db_query('SELECT block FROM {aggregator_category} WHERE cid = %d', $id)); } @@ -221,7 +221,7 @@ function aggregator_block($op, $delta = 0, $edit = array()) { return $output; } else if ($op == 'save') { - list($type, $id) = split(':', $delta); + list($type, $id) = explode('-', $delta); if ($type == 'category') { $value = db_query('UPDATE {aggregator_category} SET block = %d WHERE cid = %d', $edit['block'], $id); } @@ -230,7 +230,7 @@ function aggregator_block($op, $delta = 0, $edit = array()) { } } else if ($op == 'view') { - list($type, $id) = split(':', $delta); + list($type, $id) = explode('-', $delta); switch ($type) { case 'feed': if ($feed = db_fetch_object(db_query('SELECT fid, title, block FROM {aggregator_feed} WHERE fid = %d', $id))) { -- GitLab