Changeset 442368
- Timestamp:
- 09/22/2011 11:03:35 PM (15 years ago)
- Location:
- where-can-i-find
- Files:
-
- 2 edited
- 12 copied
-
tags/2.5 (copied) (copied from where-can-i-find/trunk)
-
tags/2.5/readme.txt (copied) (copied from where-can-i-find/trunk/readme.txt)
-
tags/2.5/trunk (copied) (copied from where-can-i-find/trunk)
-
tags/2.5/trunk/readme.txt (copied) (copied from where-can-i-find/trunk/readme.txt) (3 diffs)
-
tags/2.5/trunk/wherecanifind.php (copied) (copied from where-can-i-find/trunk/wherecanifind.php) (3 diffs)
-
tags/2.5/wherecanifind.php (copied) (copied from where-can-i-find/trunk/wherecanifind.php) (3 diffs)
-
tags/2.7 (copied) (copied from where-can-i-find/trunk)
-
tags/2.7/readme.txt (copied) (copied from where-can-i-find/trunk/readme.txt)
-
tags/2.7/trunk (copied) (copied from where-can-i-find/trunk)
-
tags/2.7/trunk/readme.txt (copied) (copied from where-can-i-find/trunk/readme.txt)
-
tags/2.7/trunk/wherecanifind.php (copied) (copied from where-can-i-find/trunk/wherecanifind.php) (1 diff)
-
tags/2.7/wherecanifind.php (copied) (copied from where-can-i-find/trunk/wherecanifind.php)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wherecanifind.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
where-can-i-find/tags/2.5/trunk/readme.txt
r436456 r442368 4 4 Requires at least: 3.2.1 5 5 Tested up to: 3.2.1 6 Stable tag: 2. 46 Stable tag: 2.5 7 7 8 8 A simple directory of where things can be found in a particular city/geographical location … … 37 37 38 38 == Changelog == 39 = 2.4 = 40 * 22 Sep 2011 41 * Bug Fix - if blog didn't allow registrations, items couldn't be added. Fixed 39 42 = 2.3 = 40 43 * 10 Sep 2011 … … 45 48 46 49 == Upgrade notice == 50 = 2.4 = Bug Fix 47 51 = 2.3 = There were some files missing from the 2.0 release. Upgrade now! 48 52 = 2.0 = initial GPL2 release -
where-can-i-find/tags/2.5/trunk/wherecanifind.php
r436456 r442368 4 4 Plugin URI: http://www.vagabumming.com/where-can-i-find/ 5 5 Description: The "Where Can I Find" list for expat websites. Shortcodes: [wcifsearch] displays the list with search form. [wcifadditem] displays the form that allows users to add items. Configure options in the wordpress dashboard under Settings/Where can I find. 6 Version: 2. 46 Version: 2.5 7 7 Author: Will Brubaker 8 8 Author URI: http://www.vagabumming.com … … 27 27 static private $vagabumming_plugin_values = array( 28 28 'name'=>'Where Can I Find', 29 'version'=>'2. 4', //hate using a string value here, but need it to hold non-numeric values29 'version'=>'2.5', //hate using a string value here, but need it to hold non-numeric values 30 30 'slug'=>'wcif', 31 31 'dbversion'=>'1.0.1', … … 508 508 $wcif_getrawinput = array(wcif_item => $_POST['wcif_item'], wcif_details => $_POST['wcif_details'], wcif_category => $_POST['wcif_category'], wcif_contributor => $_POST['wcif_contributor'], wcif_url => $_POST['wcif_url'], wcif_locationdetails => $_POST['wcif_locationdetails'], wcif_location => $_POST['wcif_location']); 509 509 $wcif_getinput = str_replace(array("\r\n","\r")," ", $wcif_getrawinput); 510 if(get_option('users_can_register') == 0 ){510 if(get_option('users_can_register') == 0 && (!current_user_can('update_core')){ 511 511 echo 'only administrators who are logged in can add items to the list'; 512 512 }else{ -
where-can-i-find/tags/2.5/wherecanifind.php
r436456 r442368 4 4 Plugin URI: http://www.vagabumming.com/where-can-i-find/ 5 5 Description: The "Where Can I Find" list for expat websites. Shortcodes: [wcifsearch] displays the list with search form. [wcifadditem] displays the form that allows users to add items. Configure options in the wordpress dashboard under Settings/Where can I find. 6 Version: 2. 46 Version: 2.5 7 7 Author: Will Brubaker 8 8 Author URI: http://www.vagabumming.com … … 27 27 static private $vagabumming_plugin_values = array( 28 28 'name'=>'Where Can I Find', 29 'version'=>'2. 4', //hate using a string value here, but need it to hold non-numeric values29 'version'=>'2.5', //hate using a string value here, but need it to hold non-numeric values 30 30 'slug'=>'wcif', 31 31 'dbversion'=>'1.0.1', … … 508 508 $wcif_getrawinput = array(wcif_item => $_POST['wcif_item'], wcif_details => $_POST['wcif_details'], wcif_category => $_POST['wcif_category'], wcif_contributor => $_POST['wcif_contributor'], wcif_url => $_POST['wcif_url'], wcif_locationdetails => $_POST['wcif_locationdetails'], wcif_location => $_POST['wcif_location']); 509 509 $wcif_getinput = str_replace(array("\r\n","\r")," ", $wcif_getrawinput); 510 if(get_option('users_can_register') == 0 ){510 if(get_option('users_can_register') == 0 && (!current_user_can('update_core')){ 511 511 echo 'only administrators who are logged in can add items to the list'; 512 512 }else{ -
where-can-i-find/tags/2.7/trunk/wherecanifind.php
r436456 r442368 508 508 $wcif_getrawinput = array(wcif_item => $_POST['wcif_item'], wcif_details => $_POST['wcif_details'], wcif_category => $_POST['wcif_category'], wcif_contributor => $_POST['wcif_contributor'], wcif_url => $_POST['wcif_url'], wcif_locationdetails => $_POST['wcif_locationdetails'], wcif_location => $_POST['wcif_location']); 509 509 $wcif_getinput = str_replace(array("\r\n","\r")," ", $wcif_getrawinput); 510 if(get_option('users_can_register') == 0 ){510 if(get_option('users_can_register') == 0 && (!current_user_can('update_core')){ 511 511 echo 'only administrators who are logged in can add items to the list'; 512 512 }else{ -
where-can-i-find/trunk/readme.txt
r436456 r442368 4 4 Requires at least: 3.2.1 5 5 Tested up to: 3.2.1 6 Stable tag: 2. 46 Stable tag: 2.5 7 7 8 8 A simple directory of where things can be found in a particular city/geographical location … … 37 37 38 38 == Changelog == 39 = 2.4 = 40 * 22 Sep 2011 41 * Bug Fix - if blog didn't allow registrations, items couldn't be added. Fixed 39 42 = 2.3 = 40 43 * 10 Sep 2011 … … 45 48 46 49 == Upgrade notice == 50 = 2.4 = Bug Fix 47 51 = 2.3 = There were some files missing from the 2.0 release. Upgrade now! 48 52 = 2.0 = initial GPL2 release -
where-can-i-find/trunk/wherecanifind.php
r436456 r442368 4 4 Plugin URI: http://www.vagabumming.com/where-can-i-find/ 5 5 Description: The "Where Can I Find" list for expat websites. Shortcodes: [wcifsearch] displays the list with search form. [wcifadditem] displays the form that allows users to add items. Configure options in the wordpress dashboard under Settings/Where can I find. 6 Version: 2. 46 Version: 2.5 7 7 Author: Will Brubaker 8 8 Author URI: http://www.vagabumming.com … … 27 27 static private $vagabumming_plugin_values = array( 28 28 'name'=>'Where Can I Find', 29 'version'=>'2. 4', //hate using a string value here, but need it to hold non-numeric values29 'version'=>'2.5', //hate using a string value here, but need it to hold non-numeric values 30 30 'slug'=>'wcif', 31 31 'dbversion'=>'1.0.1', … … 508 508 $wcif_getrawinput = array(wcif_item => $_POST['wcif_item'], wcif_details => $_POST['wcif_details'], wcif_category => $_POST['wcif_category'], wcif_contributor => $_POST['wcif_contributor'], wcif_url => $_POST['wcif_url'], wcif_locationdetails => $_POST['wcif_locationdetails'], wcif_location => $_POST['wcif_location']); 509 509 $wcif_getinput = str_replace(array("\r\n","\r")," ", $wcif_getrawinput); 510 if(get_option('users_can_register') == 0 ){510 if(get_option('users_can_register') == 0 && (!current_user_can('update_core')){ 511 511 echo 'only administrators who are logged in can add items to the list'; 512 512 }else{
Note: See TracChangeset
for help on using the changeset viewer.