[wpmu-trac] [WordPress MU Trac] #385: Loss of plugin data when Site Admin edits blog under Site Admin -> Blogs ->(edit individual blog)

WordPress MU Trac wpmu-trac at lists.automattic.com
Tue Jul 24 03:47:36 GMT 2007


#385: Loss of plugin data when Site Admin edits blog under Site Admin -> Blogs
->(edit individual blog)
------------------------+---------------------------------------------------
 Reporter:  lunabyte    |       Owner:  somebody               
     Type:  defect      |      Status:  new                    
 Priority:  highest     |   Milestone:  WPMU 2.0               
Component:  component1  |     Version:  1.0                    
 Severity:  critical    |    Keywords:  plugin option loss data
------------------------+---------------------------------------------------
 Donncha,
 this little problem has reared its head again.
 Not sure where it was introduced, but somewhere in the 1.2.x branch.

 Problem:

 When a plugin has options that span multiple lines (like in a textarea
 input field), any line after the first is chopped off when editing the
 blogs options directly through Site Admin.

 This is quick and dirty, but works for the time being.
 ----

 {{{
                 if ( stristr($val[ 'option_value' ], "\r") or
 stristr($val[ 'option_value' ], "\n") or stristr($val[ 'option_value' ],
 "\r\n") ) {
 ?>
                 <tr valign="top">
                 <th scope="row"><?php echo ucwords( str_replace( "_", " ",
 $val[ 'option_name' ] ) ) ?></th>
                 <td><textarea rows="5" cols="40" name="option[<?php echo
 $val[ 'option_name' ] ?>]" type="text" id="<?php echo $val[ 'option_name'
 ] ?>"<?php echo $disabled ?>><?php echo wp_specialchars( stripslashes(
 $val[ 'option_value' ] ), 1 ) ?></textarea></td>
                 </tr>
 <?php
                 } else {
 ?>
                 <tr valign="top">
                 <th scope="row"><?php echo ucwords( str_replace( "_", " ",
 $val[ 'option_name' ] ) ) ?></th>
                 <td><input name="option[<?php echo $val[ 'option_name' ]
 ?>]" type="text" id="<?php echo $val[ 'option_name' ] ?>" value="<?php
 echo wp_specialchars( stripslashes( $val[ 'option_value' ] ), 1 ) ?>"
 size="40" <?php echo $disabled ?>/></td>
                 </tr>
 <?php
                 }
 }}}

 ----

-- 
Ticket URL: <http://trac.mu.wordpress.org/ticket/385>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser


More information about the wpmu-trac mailing list