We like big inputs. fixes #2662

git-svn-id: http://svn.automattic.com/wordpress/trunk@3709 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2006-04-17 23:27:18 +00:00
parent 15248a593b
commit 7b2be71922
2 changed files with 8 additions and 7 deletions

View File

@ -1033,8 +1033,9 @@ function do_all_pings() {
* Places two script links in <head>: one to get tinyMCE (big), one to configure and start it (small)
*/
function tinymce_include() {
$src1 = get_settings('siteurl') . '/wp-includes/js/tinymce/tiny_mce_gzip.php?ver=04122006';
$src2 = get_settings('siteurl') . '/wp-includes/js/tinymce/tiny_mce_config.php?ver=04122006';
$ver = '04162006';
$src1 = get_settings('siteurl') . "/wp-includes/js/tinymce/tiny_mce_gzip.php?ver=$ver";
$src2 = get_settings('siteurl') . "/wp-includes/js/tinymce/tiny_mce_config.php?ver=$ver";
echo "<script type='text/javascript' src='$src1'></script>\n";
echo "<script type='text/javascript' src='$src2'></script>\n";

View File

@ -66,21 +66,21 @@
</tr>
<tr>
<td nowrap="nowrap"><label for="width">{$lang_insert_image_dimensions}</label></td>
<td><input id="width" name="width" type="text" value="" size="3" maxlength="3">
<td><input id="width" name="width" type="text" value="" size="4" maxlength="4">
x
<input id="height" name="height" type="text" value="" size="3" maxlength="3"></td>
<input id="height" name="height" type="text" value="" size="4" maxlength="4"></td>
</tr>
<tr>
<td nowrap="nowrap"><label for="border">{$lang_insert_image_border}</label></td>
<td><input id="border" name="border" type="text" value="" size="3" maxlength="3"></td>
<td><input id="border" name="border" type="text" value="" size="4" maxlength="4"></td>
</tr>
<tr>
<td nowrap="nowrap"><label for="vspace">{$lang_insert_image_vspace}</label></td>
<td><input id="vspace" name="vspace" type="text" value="" size="3" maxlength="3"></td>
<td><input id="vspace" name="vspace" type="text" value="" size="4" maxlength="4"></td>
</tr>
<tr>
<td nowrap="nowrap"><label for="hspace">{$lang_insert_image_hspace}</label></td>
<td><input id="hspace" name="hspace" type="text" value="" size="3" maxlength="3"></td>
<td><input id="hspace" name="hspace" type="text" value="" size="4" maxlength="4"></td>
</tr>
</table>
</div>