fixed: Asset Manager can generate URLs that are too long

This commit is contained in:
Graham Knop 2009-02-10 21:42:02 +00:00
parent fd48c81e76
commit 04382640b8
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,5 @@
7.6.11
- fixed: Asset Manager can generate URLs that are too long
- fixed #9629: override stringify date format to use java default format.
- Added a switch to allow the use of non-WebGUI objects with the Workflow
engine.

View file

@ -436,7 +436,7 @@ ENDHTML
### The page of assets
$output .= q{<div>}
. q{<form>}
. q{<form method="post" enctype="multipart/form-data">}
. q{<input type="hidden" name="op" value="assetManager" />}
. q{<input type="hidden" name="method" value="manage" />}
. q{<div id="dataTableContainer">}
@ -620,7 +620,7 @@ sub www_search {
}
else {
### Display the search results
$output .= q{<form>}
$output .= q{<form method="post" enctype="multipart/form-data">}
. q{<input type="hidden" name="op" value="assetManager" />}
. q{<input type="hidden" name="method" value="search" />}
. q{<input type="hidden" name="pn" value="} . $session->form->get('pn') . q{" />}