Commit fb0ecab37a23bdb0baf85e403f03994789bd9c4b

Authored by kevin_fourie
1 parent d77b4206

Merged in...

KTS-3627
"Saving a search with Japanese characters causes IE6/7 to display the saved search as "??" (SUP-967)"
Fixed. Added trim() on the saved name.

Committed by: Megan Watson
Reviewed by: Conrad Vermeulen


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.5.4-Release-Branch@9572 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 3 additions and 0 deletions
lib/actions/bulkaction.php
... ... @@ -494,6 +494,9 @@ class KTBulkAction extends KTStandardDispatcher {
494 494 $sTargetUrl = KTBrowseUtil::getSearchResultURL();
495 495 $sAction = 'refresh';
496 496 break;
  497 + default:
  498 + $sTargetUrl = $sReturnAction;
  499 + $sAction = '';
497 500 }
498 501  
499 502 $oForm = new KTForm;
... ...