Plugin Directory

Changeset 537372


Ignore:
Timestamp:
04/27/2012 04:13:30 PM (14 years ago)
Author:
mg12
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-recentcomments/trunk/wp-recentcomments.php

    r537306 r537372  
    155155            $options['content']         = true;
    156156            $options['external']        = true;
    157             $options['timestamp']       = true;
     157            $options['timestamp']       = false;
    158158
    159159            update_option('wp_recentcomments_options', $options);
     
    258258
    259259            // timestamp
    260             if(!$_POST['timestamp']) {
     260            if($_POST['timestamp']) {
     261                $options['timestamp'] = (bool)true;
     262            } else {
    261263                $options['timestamp'] = (bool)false;
    262             } else {
    263                 $options['timestamp'] = (bool)true;
    264264            }
    265265
Note: See TracChangeset for help on using the changeset viewer.