Changeset 537372
- Timestamp:
- 04/27/2012 04:13:30 PM (14 years ago)
- File:
-
- 1 edited
-
wp-recentcomments/trunk/wp-recentcomments.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-recentcomments/trunk/wp-recentcomments.php
r537306 r537372 155 155 $options['content'] = true; 156 156 $options['external'] = true; 157 $options['timestamp'] = true;157 $options['timestamp'] = false; 158 158 159 159 update_option('wp_recentcomments_options', $options); … … 258 258 259 259 // timestamp 260 if(!$_POST['timestamp']) { 260 if($_POST['timestamp']) { 261 $options['timestamp'] = (bool)true; 262 } else { 261 263 $options['timestamp'] = (bool)false; 262 } else {263 $options['timestamp'] = (bool)true;264 264 } 265 265
Note: See TracChangeset
for help on using the changeset viewer.