Changeset 355777
- Timestamp:
- 03/05/2011 04:36:33 PM (15 years ago)
- Location:
- simple-quotes
- Files:
-
- 2 edited
- 4 copied
-
tags/1.03 (copied) (copied from simple-quotes/trunk)
-
tags/1.03/calendar.png (copied) (copied from simple-quotes/trunk/calendar.png)
-
tags/1.03/index.php (copied) (copied from simple-quotes/trunk/index.php) (2 diffs)
-
tags/1.03/readme.txt (copied) (copied from simple-quotes/trunk/readme.txt) (2 diffs)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-quotes/tags/1.03/index.php
r355766 r355777 4 4 * Plugin URI: http://www.jasonernst.com/projects/quotes/ 5 5 * 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.0 26 * Version: 1.03 7 7 * Author: Jason B. Ernst 8 8 * Author URI: http://www.jasonernst.com/ … … 133 133 134 134 $quote_author = $_POST['quote_author']; 135 $quote_date = $_POST['quote_date']; 135 136 update_post_meta($post_id, 'quote_author', $quote_author); 137 update_post_meta($post_id, 'quote_date', $quote_date); 136 138 return $post_id; 137 139 } -
simple-quotes/tags/1.03/readme.txt
r355766 r355777 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1 7 Stable tag: 1.0 27 Stable tag: 1.03 8 8 9 9 Just a simple project that flexibly prints random quotes anywhere on a wordpress page. … … 28 28 == Changelog == 29 29 30 = 1.03 = 31 * Fixed a problem where the date was not being saved correctly 32 30 33 = 1.02 = 31 34 * Added an optional date field for the quotes -
simple-quotes/trunk/index.php
r355766 r355777 4 4 * Plugin URI: http://www.jasonernst.com/projects/quotes/ 5 5 * 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.0 26 * Version: 1.03 7 7 * Author: Jason B. Ernst 8 8 * Author URI: http://www.jasonernst.com/ … … 133 133 134 134 $quote_author = $_POST['quote_author']; 135 $quote_date = $_POST['quote_date']; 135 136 update_post_meta($post_id, 'quote_author', $quote_author); 137 update_post_meta($post_id, 'quote_date', $quote_date); 136 138 return $post_id; 137 139 } -
simple-quotes/trunk/readme.txt
r355766 r355777 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1 7 Stable tag: 1.0 27 Stable tag: 1.03 8 8 9 9 Just a simple project that flexibly prints random quotes anywhere on a wordpress page. … … 28 28 == Changelog == 29 29 30 = 1.03 = 31 * Fixed a problem where the date was not being saved correctly 32 30 33 = 1.02 = 31 34 * Added an optional date field for the quotes
Note: See TracChangeset
for help on using the changeset viewer.