fixed image upload problem
This commit is contained in:
parent
0823527ebe
commit
ed108c7bca
2 changed files with 7 additions and 2 deletions
|
|
@ -92,6 +92,8 @@
|
||||||
- Changed navigation, page, macro, and rich editor templates to load more
|
- Changed navigation, page, macro, and rich editor templates to load more
|
||||||
quickly.
|
quickly.
|
||||||
- upgrade.pl now deletes temporary files and template cache.
|
- upgrade.pl now deletes temporary files and template cache.
|
||||||
|
- Fixed a bug in the HTMLArea image manager that would not allow users to
|
||||||
|
upload files if the gateway script was not at /index.pl
|
||||||
|
|
||||||
|
|
||||||
6.1.1
|
6.1.1
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,7 @@ TD.thumbnail { font: 9pt 'MS Shell Dlg', Helvetica, sans-serif; width: 30em; }
|
||||||
TD.upload { font: 9pt 'MS Shell Dlg', Helvetica, sans-serif; width: 37em; }
|
TD.upload { font: 9pt 'MS Shell Dlg', Helvetica, sans-serif; width: 37em; }
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
<!-- script copied from original "insert_image.html" -->
|
<!-- script copied from original "insert_image.html" -->
|
||||||
<script defer>
|
<script defer>
|
||||||
function _CloseOnEsc() {
|
function _CloseOnEsc() {
|
||||||
|
|
@ -141,7 +142,6 @@ function _isValidNumber(txtBox) {
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function OKClick() {
|
function OKClick() {
|
||||||
var elmImage;
|
var elmImage;
|
||||||
var intAlignment;
|
var intAlignment;
|
||||||
|
|
@ -266,7 +266,10 @@ var dialogArgs = window.dialogArguments;
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<form name="actions" method="POST" action="/" enctype="multipart/form-data" target="lister">
|
<script>
|
||||||
|
var dialogArgs = window.dialogArguments;
|
||||||
|
document.write('<form name="actions" method="POST" action="'+ dialogArgs[1] +'" enctype="multipart/form-data" target="lister">');
|
||||||
|
</script>
|
||||||
<table border="0" cellpadding="0" cellspacing="0">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="upload" colspan="2">
|
<td class="upload" colspan="2">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue