Ticket #3237: patch.diff
File patch.diff, 698 bytes (added by , 18 years ago) |
---|
-
admin-functions.php
1029 1029 FROM $wpdb->postmeta 1030 1030 GROUP BY meta_key 1031 1031 ORDER BY meta_id DESC 1032 LIMIT 10");1032 LIMIT 30"); 1033 1033 ?> 1034 1034 <h3><?php _e('Add a new custom field:') ?></h3> 1035 1035 <table id="newmeta" cellspacing="3" cellpadding="3"> … … 1043 1043 <select id="metakeyselect" name="metakeyselect" tabindex="7"> 1044 1044 <option value="#NONE#"><?php _e('- Select -'); ?></option> 1045 1045 <?php 1046 1046 natcasesort($keys); 1047 1047 foreach ($keys as $key) { 1048 1048 $key = wp_specialchars($key, 1); 1049 1049 echo "\n\t<option value='$key'>$key</option>";