Changeset 501312
- Timestamp:
- 02/06/2012 09:55:31 PM (14 years ago)
- Location:
- catablog/trunk
- Files:
-
- 5 edited
-
catablog.php (modified) (2 diffs)
-
css/catablog.css (modified) (1 diff)
-
lib/CataBlog.class.php (modified) (2 diffs)
-
lib/CataBlogItem.class.php (modified) (1 diff)
-
lib/CataBlogWidget.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
catablog/trunk/catablog.php
r501306 r501312 4 4 Plugin URI: http://catablog.illproductions.com/ 5 5 Description: CataBlog is a comprehensive and effortless tool that helps you create, organize and share catalogs, stores, galleries and portfolios on your blog. 6 Version: 1.4 6 Version: 1.4.1 7 7 Author: Zachary Segal 8 8 Author URI: http://catablog.illproductions.com/about/ … … 192 192 // Remote post on deactivation 193 193 function catablog_deactivate() { 194 $body_array = array('action'=>'deactivate', 'site-url'=>site_url(), 'version'=>'1.4 ');194 $body_array = array('action'=>'deactivate', 'site-url'=>site_url(), 'version'=>'1.4.1'); 195 195 $post_action = wp_remote_post('http://catablog.illproductions.com/tracker.php', array('body'=>$body_array)); 196 196 } -
catablog/trunk/css/catablog.css
r498885 r501312 1 1 /* 2 * CataBlog StyleSheet, version 1.4 2 * CataBlog StyleSheet, version 1.4.1 3 3 */ 4 4 -
catablog/trunk/lib/CataBlog.class.php
r501306 r501312 5 5 * This file contains the core class for the CataBlog WordPress Plugin. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.4 7 * @version 1.4.1 8 8 * @package catablog 9 9 */ … … 19 19 20 20 // plugin version number and blog url 21 private $version = "1.4 ";21 private $version = "1.4.1"; 22 22 private $blog_url = 'http://catablog.illproductions.com/'; 23 23 private $debug = false; -
catablog/trunk/lib/CataBlogItem.class.php
r498885 r501312 5 5 * This file contains the class for each CataBlog Item that is fetched from the database. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.4 7 * @version 1.4.1 8 8 * @package catablog 9 9 */ -
catablog/trunk/lib/CataBlogWidget.class.php
r501306 r501312 5 5 * This file contains the widget classes for the CataBlog WordPress Plugin. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.4 7 * @version 1.4.1 8 8 * @package catablog 9 9 */
Note: See TracChangeset
for help on using the changeset viewer.