From 976982d3e2f083cfea6d764c576460b43095caff Mon Sep 17 00:00:00 2001 From: ikawhero Date: Wed, 22 Mar 2006 09:16:08 +0000 Subject: [PATCH] Corrected variable reference - was causing problems with SQL inserts/updates. --- blog/edit.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/blog/edit.php b/blog/edit.php index fde08b68199..c0c563052b6 100755 --- a/blog/edit.php +++ b/blog/edit.php @@ -224,8 +224,8 @@ function do_save(&$post, &$bloginfo_arg) { $tag = NULL; $tag->entryid = $entryID; - $tag->groupid = $groupid; - $tag->courseid = $courseid; + $tag->groupid = $post->groupid; + $tag->courseid = $post->courseid; $tag->userid = $USER->id; $tag->timemodified = time(); @@ -279,11 +279,11 @@ function do_update(&$post, &$bloginfo) { $tag = NULL; $tag->entryid = $blogentry->entryId; - $tag->groupid = $groupid; - $tag->courseid = $courseid; + $tag->groupid = $post->groupid; + $tag->courseid = $post->courseid; $tag->userid = $USER->id; $tag->timemodified = time(); - + /// Add tags information foreach ($otags as $otag) { $tag->tagid = $otag; @@ -294,7 +294,7 @@ function do_update(&$post, &$bloginfo) { $tag->tagid = $ptag; insert_record('blog_tag_instance',$tag); } - + // only do pings if the entry is published to the world // Daryl Hawes note - eventually should check if it's on the same server // and if so allow pb/tb as well - especially now that moderation is in place