Plugin Directory

Changeset 149211


Ignore:
Timestamp:
08/26/2009 07:44:17 AM (17 years ago)
Author:
Ornani
Message:
 
Location:
post-editor-buttons/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • post-editor-buttons/trunk/index.php

    r146659 r149211  
    44Plugin URI: http://orenyomtov.info
    55Description: This plugin allows you to add buttons to the post editor.
    6 Version: 1.4
     6Version: 1.5
    77Author: Oren Yomtov
    88Author URI: http://orenyomtov.info
     
    8686?>
    8787<tr valign="top" id="row<?php echo $i; ?>">
    88 <td><input type="text" name="peb_caption[]" value="<?php echo str_replace('"','&quot;',$caption[$i]); ?>" /></td>
    89 <td><input type="text" name="peb_before[]" value="<?php echo str_replace('"','&quot;',$before[$i]); ?>" /></td>
    90 <td><input type="text" name="peb_after[]" value="<?php echo str_replace('"','&quot;',$after[$i]); ?>" /></td>
     88<td><input type="text" name="peb_caption[]" value="<?php echo str_replace('"','&quot;',htmlentities($caption[$i])); ?>" /></td>
     89<td><input type="text" name="peb_before[]" value="<?php echo str_replace('"','&quot;',htmlentities($before[$i])); ?>" /></td>
     90<td><input type="text" name="peb_after[]" value="<?php echo str_replace('"','&quot;',htmlentities($after[$i])); ?>" /></td>
    9191<td><a  href="#" onclick="return peb_deleteRow('<?php echo $i; ?>');"><?php echo _e('Delete') ?></a></td>
    9292</tr>
  • post-editor-buttons/trunk/readme.txt

    r146659 r149211  
    66Requires at least: 2.5
    77Tested up to: 2.8.4
    8 Stable tag: 1.4
     8Stable tag: 1.5
    99
    1010This plugin allows you add your own buttons to the post editor's toolbar.
     
    1212== Description ==
    1313
    14 <p><strong>1.4:</strong>
    15 Bug fix - WordPress 2.8.4 bug fix.</p>
     14<p><strong>1.5:</strong>
     15Bug fix - Now you can use HTML entities.</p>
    1616
    1717<p>
     
    4040== Changelog ==
    4141
     42= 1.5 =
     43*Bug fix - Now you can use HTML entities.
     44
    4245= 1.4 =
    4346*Bug fix - WordPress 2.8.4 bug fix.
Note: See TracChangeset for help on using the changeset viewer.