1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-26 01:11:28 +02:00

Bugfix: TinyMce image-preview was missing when editing the properties of an existing image. (ibrowser)

This commit is contained in:
CaMer0n
2011-03-15 04:47:26 +00:00
parent 796e6555eb
commit 570ff92c02

View File

@@ -32,7 +32,7 @@ unset($tinyMCE_imglib_include);
include 'config.php';
$request_uri = urldecode(empty($_POST['request_uri'])?(empty($_GET['request_uri'])?'':$_GET['request_uri']):$_POST['request_uri']);
//$request_uri = urldecode(empty($_POST['request_uri'])?(empty($_GET['request_uri'])?'':$_GET['request_uri']):$_POST['request_uri']);
// if set include file specified in $tinyMCE_imglib_include
if (!empty($tinyMCE_imglib_include))
@@ -223,7 +223,7 @@ echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://
formObj.size.value = 'n/a';
owidth = eval(formObj.width.value);
oheight = eval(formObj.height.value);
document.getElementById('imgpreview').src = '<?php echo $_root ?>' + formObj.src.value;
document.getElementById('imgpreview').src = formObj.src.value;
updateStyle();
}
@@ -290,9 +290,8 @@ echo "</head>
window.name = 'imglibrary';
</script>
<form id=\"libbrowser\" method=\"post\" action=\"ibrowser.php?request_uri=".$_GET['request_uri']."\" enctype=\"multipart/form-data\" target=\"imglibrary\">
<form id=\"libbrowser\" method=\"post\" action=\"ibrowser.php\" enctype=\"multipart/form-data\" target=\"imglibrary\">
<div>
<input type=\"hidden\" name=\"request_uri\" value=\"". urlencode($request_uri)."\" />
<input type=\"hidden\" name=\"lib_action\" value=\"\" />
<fieldset style= \"padding: 5px; margin-top: -5px;\">
<legend>".$lang_ibrowser_img_sel."</legend>
@@ -510,4 +509,4 @@ function filesize_h($size, $dec = 1)
return round($size, $dec) . ' ' . $sizes[$i];
}
?>
?>