[wp-cvs] wordpress/wp-admin options-general.php, 1.23,
1.24 options-permalink.php, 1.36, 1.37 options-reading.php,
1.14, 1.15
Jason Verber
jverber at users.sourceforge.net
Sat Jun 19 04:24:01 UTC 2004
Update of /cvsroot/cafelog/wordpress/wp-admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16077/wp-admin
Modified Files:
options-general.php options-permalink.php options-reading.php
Log Message:
Fixes for bugs #0000088-90: fixed encoding of special chars.
Index: options-reading.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-admin/options-reading.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** options-reading.php 18 Jun 2004 00:13:16 -0000 1.14
--- options-reading.php 19 Jun 2004 04:23:58 -0000 1.15
***************
*** 75,79 ****
<td><label>
<input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_settings('rss_use_excerpt')); ?> />
! <?php _e('full text') ?></label> <br>
<label>
<input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_settings('rss_use_excerpt')); ?> />
--- 75,79 ----
<td><label>
<input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_settings('rss_use_excerpt')); ?> />
! <?php _e('full text') ?></label> <br />
<label>
<input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_settings('rss_use_excerpt')); ?> />
Index: options-permalink.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-admin/options-permalink.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** options-permalink.php 15 Jun 2004 23:24:35 -0000 1.36
--- options-permalink.php 19 Jun 2004 04:23:58 -0000 1.37
***************
*** 138,142 ****
<?php printf(__('<p>If your <code>.htaccess</code> file is writable by WordPress, you can <a href="%s">edit it through your template interface</a>.</p>'), 'templates.php?file=.htaccess') ?>
</form>
! </div>
<?php
} else {
--- 138,142 ----
<?php printf(__('<p>If your <code>.htaccess</code> file is writable by WordPress, you can <a href="%s">edit it through your template interface</a>.</p>'), 'templates.php?file=.htaccess') ?>
</form>
!
<?php
} else {
Index: options-general.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-admin/options-general.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** options-general.php 15 Jun 2004 23:24:35 -0000 1.23
--- options-general.php 19 Jun 2004 04:23:58 -0000 1.24
***************
*** 51,59 ****
<tr valign="top">
<th width="33%" scope="row"><?php _e('Weblog title:') ?></th>
! <td><input name="blogname" type="text" id="blogname" value="<?php echo get_settings('blogname'); ?>" size="40" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e('Tagline:') ?></th>
! <td><input name="blogdescription" type="text" id="blogdescription" style="width: 95%" value="<?php echo get_settings('blogdescription'); ?>" size="45" />
<br />
<?php _e('In a few words, explain what this weblog is about.') ?></td>
--- 51,59 ----
<tr valign="top">
<th width="33%" scope="row"><?php _e('Weblog title:') ?></th>
! <td><input name="blogname" type="text" id="blogname" value="<?php echo htmlspecialchars(get_settings('blogname')); ?>" size="40" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e('Tagline:') ?></th>
! <td><input name="blogdescription" type="text" id="blogdescription" style="width: 95%" value="<?php echo htmlspecialchars(get_settings('blogdescription')); ?>" size="45" />
<br />
<?php _e('In a few words, explain what this weblog is about.') ?></td>
More information about the cvs
mailing list