Corrected variable reference - was causing problems with SQL inserts/updates.

This commit is contained in:
ikawhero 2006-03-22 09:16:08 +00:00
parent c9095ae670
commit 976982d3e2

View File

@ -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