From ea85a42fca2ec11ea9b251c06a645f490a00ad16 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 12 Dec 2005 04:43:20 +0000 Subject: [PATCH] fix typo in Post, re sf#1378493 --- docs/changelog/6.x.x.txt | 1 + lib/WebGUI/Asset/Post.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 4dfc10406..b7dd101df 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -1,5 +1,6 @@ 6.8.2 - Added macro to return the MIME type to a file, FetchMimeType. + - fix [ 1378493 ] 6.7.8 collab post edits (images) - Fixed bug where viewProfile did not show pretty printed values - Fixed bug/rfe where it was not obvious when hovering over the rank column in the Asset Manager that you can drag rows up and down. diff --git a/lib/WebGUI/Asset/Post.pm b/lib/WebGUI/Asset/Post.pm index 2b6c81dbd..898f9b238 100644 --- a/lib/WebGUI/Asset/Post.pm +++ b/lib/WebGUI/Asset/Post.pm @@ -760,7 +760,7 @@ sub setStatusApproved { $self->commit; $self->getThread->incrementReplies($self->get("dateUpdated"),$self->getId) if $self->isReply; unless ($self->isPoster) { - WebGUI::MessageLog::addInternationalizedEntry($self->get("ownerUserId"),'',WebGUI::URL::getSiteUrl().'/'.$self->getUrl,579); + WebGUI::MessageLog::addInternationalizedEntry($self->get("ownerUserId"),'',WebGUI::URL::getSiteURL().'/'.$self->getUrl,579); } $self->notifySubscribers unless ($session{form}{func} eq 'add'); }