Changeset 149211
- Timestamp:
- 08/26/2009 07:44:17 AM (17 years ago)
- Location:
- post-editor-buttons/trunk
- Files:
-
- 2 edited
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-editor-buttons/trunk/index.php
r146659 r149211 4 4 Plugin URI: http://orenyomtov.info 5 5 Description: This plugin allows you to add buttons to the post editor. 6 Version: 1. 46 Version: 1.5 7 7 Author: Oren Yomtov 8 8 Author URI: http://orenyomtov.info … … 86 86 ?> 87 87 <tr valign="top" id="row<?php echo $i; ?>"> 88 <td><input type="text" name="peb_caption[]" value="<?php echo str_replace('"','"', $caption[$i]); ?>" /></td>89 <td><input type="text" name="peb_before[]" value="<?php echo str_replace('"','"', $before[$i]); ?>" /></td>90 <td><input type="text" name="peb_after[]" value="<?php echo str_replace('"','"', $after[$i]); ?>" /></td>88 <td><input type="text" name="peb_caption[]" value="<?php echo str_replace('"','"',htmlentities($caption[$i])); ?>" /></td> 89 <td><input type="text" name="peb_before[]" value="<?php echo str_replace('"','"',htmlentities($before[$i])); ?>" /></td> 90 <td><input type="text" name="peb_after[]" value="<?php echo str_replace('"','"',htmlentities($after[$i])); ?>" /></td> 91 91 <td><a href="#" onclick="return peb_deleteRow('<?php echo $i; ?>');"><?php echo _e('Delete') ?></a></td> 92 92 </tr> -
post-editor-buttons/trunk/readme.txt
r146659 r149211 6 6 Requires at least: 2.5 7 7 Tested up to: 2.8.4 8 Stable tag: 1. 48 Stable tag: 1.5 9 9 10 10 This plugin allows you add your own buttons to the post editor's toolbar. … … 12 12 == Description == 13 13 14 <p><strong>1. 4:</strong>15 Bug fix - WordPress 2.8.4 bug fix.</p>14 <p><strong>1.5:</strong> 15 Bug fix - Now you can use HTML entities.</p> 16 16 17 17 <p> … … 40 40 == Changelog == 41 41 42 = 1.5 = 43 *Bug fix - Now you can use HTML entities. 44 42 45 = 1.4 = 43 46 *Bug fix - WordPress 2.8.4 bug fix.
Note: See TracChangeset
for help on using the changeset viewer.