Changeset 556288
- Timestamp:
- 06/11/2012 08:13:33 PM (14 years ago)
- Location:
- wordpress-automation-suite
- Files:
-
- 24 added
- 2 edited
-
tags/2.7 (added)
-
tags/2.7/AutoMore.php (added)
-
tags/2.7/AutoPaging.php (added)
-
tags/2.7/AutoTagger.php (added)
-
tags/2.7/Menu.php (added)
-
tags/2.7/automation-suite.php (added)
-
tags/2.7/imgs (added)
-
tags/2.7/imgs/icon.png (added)
-
tags/2.7/js (added)
-
tags/2.7/js/automation-suite.js (added)
-
tags/2.7/pages (added)
-
tags/2.7/pages/MainOptions.php (added)
-
tags/2.7/pages/auto-more-update-all.php (added)
-
tags/2.7/pages/auto-more.php (added)
-
tags/2.7/pages/auto-paging-update-all.php (added)
-
tags/2.7/pages/auto-paging.php (added)
-
tags/2.7/pages/auto-tagger.php (added)
-
tags/2.7/pages/paypal.php (added)
-
tags/2.7/readme.txt (added)
-
tags/2.7/screenshot-1.png (added)
-
tags/2.7/screenshot-2.png (added)
-
tags/2.7/screenshot-3.png (added)
-
tags/2.7/screenshot-4.png (added)
-
tags/2.7/screenshot-5.png (added)
-
trunk/automation-suite.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-automation-suite/trunk/automation-suite.php
r550015 r556288 6 6 Author URI: http://travisweston.com/ 7 7 Description: With the help of this automation suite you are able to forget about creating excerpts, you can forget about manually inserting new pages for your posts. With this suite, all of these actions can, and will, be automated for you! 8 Version: 2. 68 Version: 2.7 9 9 */ 10 10 if(!defined('WESTON_NETWORKS_AUTOMATION_SUITE')){ … … 51 51 $this->_modules['auto-tagger'] = new AutoTagger(); 52 52 }else{ 53 add_action('admin_notices', function() { 54 echo '<div id="message" class="error"><h4>ERROR:</h4>Auto Tagger Module requires PHP cURL extension to be installed.</div>'; 55 update_option("AutomationSuite_AutoTagger", false); 56 } 57 ); 53 add_action('admin_notices', array($this, 'autoTaggerFail')); 58 54 } 59 55 } … … 62 58 add_action('admin_notices', array($this, 'begForMoney')); 63 59 self::$_instance = $this; 60 } 61 62 public function autoTaggerFail() { 63 echo '<div id="message" class="error"><h4>ERROR:</h4>Auto Tagger Module requires PHP cURL extension to be installed.</div>'; 64 update_option("AutomationSuite_AutoTagger", false); 64 65 } 65 66 -
wordpress-automation-suite/trunk/readme.txt
r550015 r556288 8 8 Requires at least: 3.0 9 9 Tested up to: 3.3.2 10 Stable tag: 2. 610 Stable tag: 2.7 11 11 12 12 Makes your life easier by automating the mundane tasks of writing blog posts, so you can focus on the content. … … 87 87 88 88 == Changelog == 89 = 2.7 = 90 Added support for older versions of PHP by removing the anonymous function in automation-suite.php 91 89 92 = 2.6 = 90 93 Another error fix … … 118 121 119 122 == Upgrade Notice == 123 = 2.7 = 124 Added support for older versions of PHP by removing the anonymous function in automation-suite.php 125 120 126 = 2.6 = 121 127 Another error fix
Note: See TracChangeset
for help on using the changeset viewer.