From 5b4ffcec5f07214efb5ddf437c52bdd679f2e1b0 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Sun, 20 Jul 2008 19:39:41 +0000 Subject: [PATCH] fix: Image uploader in Rich Editor now works correctly --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Form/HTMLArea.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index ddcad44df..863804daf 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -12,6 +12,7 @@ - fixed backwards compatibility with new form control API additions: getValue is now an alias to getValueFromForm instead of vice-versa. getValue is still the preferred method, getValueFromForm is still the deprecated method. + - fixed: Image Collateral Uploader in Rich Editor now works correctly 7.5.17 - fixed: Payment Methods Hover Help Incomplete diff --git a/lib/WebGUI/Form/HTMLArea.pm b/lib/WebGUI/Form/HTMLArea.pm index 7d4895081..b4c79e5df 100644 --- a/lib/WebGUI/Form/HTMLArea.pm +++ b/lib/WebGUI/Form/HTMLArea.pm @@ -402,7 +402,7 @@ sub www_addFolderSave { className => 'WebGUI::Asset::Wobject::Folder', #filename => $filename, }); - $session->http->setRedirect($base->getUrl('op=formHelper;class=HTMLForm;sub=imageTree')); + $session->http->setRedirect($base->getUrl('op=formHelper;class=HTMLArea;sub=imageTree')); return undef; }