Plugin Directory

Changeset 355777


Ignore:
Timestamp:
03/05/2011 04:36:33 PM (15 years ago)
Author:
jernst
Message:

fix date not saving

Location:
simple-quotes
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • simple-quotes/tags/1.03/index.php

    r355766 r355777  
    44 * Plugin URI: http://www.jasonernst.com/projects/quotes/
    55 * Description: Creates a custom post type for quotes which will show up in the administrative interface within wordpress. The quotes are then return randomly in an associative array using the function 'quote_random()'. Extremely simple plugin takes only a quote and the quote author. Note: The author icon is taken from the famfamfam icon pack (http://www.famfamfam.com/)
    6  * Version: 1.02
     6 * Version: 1.03
    77 * Author: Jason B. Ernst
    88 * Author URI: http://www.jasonernst.com/
     
    133133   
    134134    $quote_author = $_POST['quote_author'];
     135    $quote_date = $_POST['quote_date'];
    135136    update_post_meta($post_id, 'quote_author', $quote_author);
     137    update_post_meta($post_id, 'quote_date', $quote_date);
    136138    return $post_id;
    137139}
  • simple-quotes/tags/1.03/readme.txt

    r355766 r355777  
    55Requires at least: 3.0
    66Tested up to: 3.1
    7 Stable tag: 1.02
     7Stable tag: 1.03
    88
    99Just a simple project that flexibly prints random quotes anywhere on a wordpress page.
     
    2828== Changelog ==
    2929
     30= 1.03 =
     31* Fixed a problem where the date was not being saved correctly
     32
    3033= 1.02 =
    3134* Added an optional date field for the quotes
  • simple-quotes/trunk/index.php

    r355766 r355777  
    44 * Plugin URI: http://www.jasonernst.com/projects/quotes/
    55 * Description: Creates a custom post type for quotes which will show up in the administrative interface within wordpress. The quotes are then return randomly in an associative array using the function 'quote_random()'. Extremely simple plugin takes only a quote and the quote author. Note: The author icon is taken from the famfamfam icon pack (http://www.famfamfam.com/)
    6  * Version: 1.02
     6 * Version: 1.03
    77 * Author: Jason B. Ernst
    88 * Author URI: http://www.jasonernst.com/
     
    133133   
    134134    $quote_author = $_POST['quote_author'];
     135    $quote_date = $_POST['quote_date'];
    135136    update_post_meta($post_id, 'quote_author', $quote_author);
     137    update_post_meta($post_id, 'quote_date', $quote_date);
    136138    return $post_id;
    137139}
  • simple-quotes/trunk/readme.txt

    r355766 r355777  
    55Requires at least: 3.0
    66Tested up to: 3.1
    7 Stable tag: 1.02
     7Stable tag: 1.03
    88
    99Just a simple project that flexibly prints random quotes anywhere on a wordpress page.
     
    2828== Changelog ==
    2929
     30= 1.03 =
     31* Fixed a problem where the date was not being saved correctly
     32
    3033= 1.02 =
    3134* Added an optional date field for the quotes
Note: See TracChangeset for help on using the changeset viewer.