Changeset 1198640
- Timestamp:
- 07/14/2015 10:15:45 AM (11 years ago)
- Location:
- limit-posts
- Files:
-
- 3 edited
- 2 copied
-
tags/1.0.6 (copied) (copied from limit-posts/trunk)
-
tags/1.0.6/limit-posts.php (copied) (copied from limit-posts/trunk/limit-posts.php) (2 diffs)
-
tags/1.0.6/readme.txt (modified) (2 diffs)
-
trunk/limit-posts.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
limit-posts/tags/1.0.6/limit-posts.php
r1198090 r1198640 4 4 Plugin URI: www.limitposts.com 5 5 Description: A plugin to allow administrators to limit the number of posts a user can publish in a given time period. 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: PluginCentral 8 8 Author URI: https://profiles.wordpress.org/plugincentral/ … … 330 330 foreach($inputRules as $rule){ 331 331 //echo 'publish_action = '.$rule['publish_action'].' $publishAction = '.$publishAction; 332 if(strtolower($rule['publish_action']) == strtolower($publishAction)){ 332 $ruleAction = 'Publish'; 333 if(isset($rule['publish_action'])){ 334 $ruleAction = $rule['publish_action']; 335 } 336 if(strtolower($ruleAction) == strtolower($publishAction)){ 333 337 $filterRules[] = $rule; 334 338 } -
limit-posts/tags/1.0.6/readme.txt
r1198086 r1198640 5 5 Requires at least: 4.0.0 6 6 Tested up to: 4.2.2 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 108 108 Bug fix - undefined index publish_action limit-posts 205. 109 109 110 = 1.0.6 = 111 Bug fix - undefined index publish_action limit-posts 332. 112 110 113 == Upgrade Notice == 111 114 -
limit-posts/trunk/limit-posts.php
r1198090 r1198640 4 4 Plugin URI: www.limitposts.com 5 5 Description: A plugin to allow administrators to limit the number of posts a user can publish in a given time period. 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: PluginCentral 8 8 Author URI: https://profiles.wordpress.org/plugincentral/ … … 330 330 foreach($inputRules as $rule){ 331 331 //echo 'publish_action = '.$rule['publish_action'].' $publishAction = '.$publishAction; 332 if(strtolower($rule['publish_action']) == strtolower($publishAction)){ 332 $ruleAction = 'Publish'; 333 if(isset($rule['publish_action'])){ 334 $ruleAction = $rule['publish_action']; 335 } 336 if(strtolower($ruleAction) == strtolower($publishAction)){ 333 337 $filterRules[] = $rule; 334 338 } -
limit-posts/trunk/readme.txt
r1198086 r1198640 5 5 Requires at least: 4.0.0 6 6 Tested up to: 4.2.2 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 108 108 Bug fix - undefined index publish_action limit-posts 205. 109 109 110 = 1.0.6 = 111 Bug fix - undefined index publish_action limit-posts 332. 112 110 113 == Upgrade Notice == 111 114
Note: See TracChangeset
for help on using the changeset viewer.