Cleaned up the upload button.
git-svn-id: http://svn.automattic.com/wordpress/trunk@830 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bf0aac0d51
commit
a157baa95c
|
@ -156,7 +156,7 @@ if ($action != 'editcomment') {
|
|||
if ($action != 'editcomment') {
|
||||
if ( ($use_fileupload) && ($user_level >= $fileupload_minlevel)
|
||||
&& (in_array($user_login, $allowed_users) || (trim($fileupload_allowedusers)=="")) ) { ?>
|
||||
<input type="button" value="upload a file/image" onclick="launchupload();" class="search" tabindex="10" />
|
||||
<p><input type="button" value="Upload a file or image" onclick="launchupload();" tabindex="10" /></p>
|
||||
<?php }
|
||||
}
|
||||
|
||||
|
|
|
@ -119,7 +119,11 @@ edCanvas = document.getElementById('content');
|
|||
} ?>
|
||||
<input name="referredby" type="hidden" id="referredby" value="<?php echo $HTTP_SERVER_VARS['HTTP_REFERER']; ?>" />
|
||||
</p>
|
||||
|
||||
<?php
|
||||
if ( ($use_fileupload) && ($user_level >= $fileupload_minlevel)
|
||||
&& (in_array($user_login, $allowed_users) || (trim($fileupload_allowedusers)=="")) ) { ?>
|
||||
<p><input type="button" value="Upload a file or image" onclick="launchupload();" tabindex="10" /></p>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
|
Loading…
Reference in New Issue