Plugin Directory

Changeset 442368


Ignore:
Timestamp:
09/22/2011 11:03:35 PM (15 years ago)
Author:
vagabumming
Message:

version 2.5 bug fix

Location:
where-can-i-find
Files:
2 edited
12 copied

Legend:

Unmodified
Added
Removed
  • where-can-i-find/tags/2.5/trunk/readme.txt

    r436456 r442368  
    44Requires at least: 3.2.1
    55Tested up to: 3.2.1
    6 Stable tag: 2.4
     6Stable tag: 2.5
    77
    88A simple directory of where things can be found in a particular city/geographical location
     
    3737
    3838== Changelog ==
     39= 2.4 =
     40* 22 Sep 2011
     41* Bug Fix - if blog didn't allow registrations, items couldn't be added.  Fixed
    3942= 2.3 =
    4043* 10 Sep 2011
     
    4548
    4649== Upgrade notice ==
     50    = 2.4 = Bug Fix
    4751    = 2.3 = There were some files missing from the 2.0 release.  Upgrade now!
    4852    = 2.0 = initial GPL2 release
  • where-can-i-find/tags/2.5/trunk/wherecanifind.php

    r436456 r442368  
    44Plugin URI: http://www.vagabumming.com/where-can-i-find/
    55Description: 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.4
     6Version: 2.5
    77Author: Will Brubaker
    88Author URI: http://www.vagabumming.com
     
    2727static private $vagabumming_plugin_values = array(
    2828                                            'name'=>'Where Can I Find',
    29                                             'version'=>'2.4', //hate using a string value here, but need it to hold non-numeric values
     29                                            'version'=>'2.5', //hate using a string value here, but need it to hold non-numeric values
    3030                                            'slug'=>'wcif',
    3131                                            'dbversion'=>'1.0.1',
     
    508508$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']);
    509509$wcif_getinput = str_replace(array("\r\n","\r")," ", $wcif_getrawinput);
    510 if(get_option('users_can_register') == 0){
     510if(get_option('users_can_register') == 0 && (!current_user_can('update_core')){
    511511    echo 'only administrators who are logged in can add items to the list';
    512512    }else{
  • where-can-i-find/tags/2.5/wherecanifind.php

    r436456 r442368  
    44Plugin URI: http://www.vagabumming.com/where-can-i-find/
    55Description: 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.4
     6Version: 2.5
    77Author: Will Brubaker
    88Author URI: http://www.vagabumming.com
     
    2727static private $vagabumming_plugin_values = array(
    2828                                            'name'=>'Where Can I Find',
    29                                             'version'=>'2.4', //hate using a string value here, but need it to hold non-numeric values
     29                                            'version'=>'2.5', //hate using a string value here, but need it to hold non-numeric values
    3030                                            'slug'=>'wcif',
    3131                                            'dbversion'=>'1.0.1',
     
    508508$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']);
    509509$wcif_getinput = str_replace(array("\r\n","\r")," ", $wcif_getrawinput);
    510 if(get_option('users_can_register') == 0){
     510if(get_option('users_can_register') == 0 && (!current_user_can('update_core')){
    511511    echo 'only administrators who are logged in can add items to the list';
    512512    }else{
  • where-can-i-find/tags/2.7/trunk/wherecanifind.php

    r436456 r442368  
    508508$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']);
    509509$wcif_getinput = str_replace(array("\r\n","\r")," ", $wcif_getrawinput);
    510 if(get_option('users_can_register') == 0){
     510if(get_option('users_can_register') == 0 && (!current_user_can('update_core')){
    511511    echo 'only administrators who are logged in can add items to the list';
    512512    }else{
  • where-can-i-find/trunk/readme.txt

    r436456 r442368  
    44Requires at least: 3.2.1
    55Tested up to: 3.2.1
    6 Stable tag: 2.4
     6Stable tag: 2.5
    77
    88A simple directory of where things can be found in a particular city/geographical location
     
    3737
    3838== Changelog ==
     39= 2.4 =
     40* 22 Sep 2011
     41* Bug Fix - if blog didn't allow registrations, items couldn't be added.  Fixed
    3942= 2.3 =
    4043* 10 Sep 2011
     
    4548
    4649== Upgrade notice ==
     50    = 2.4 = Bug Fix
    4751    = 2.3 = There were some files missing from the 2.0 release.  Upgrade now!
    4852    = 2.0 = initial GPL2 release
  • where-can-i-find/trunk/wherecanifind.php

    r436456 r442368  
    44Plugin URI: http://www.vagabumming.com/where-can-i-find/
    55Description: 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.4
     6Version: 2.5
    77Author: Will Brubaker
    88Author URI: http://www.vagabumming.com
     
    2727static private $vagabumming_plugin_values = array(
    2828                                            'name'=>'Where Can I Find',
    29                                             'version'=>'2.4', //hate using a string value here, but need it to hold non-numeric values
     29                                            'version'=>'2.5', //hate using a string value here, but need it to hold non-numeric values
    3030                                            'slug'=>'wcif',
    3131                                            'dbversion'=>'1.0.1',
     
    508508$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']);
    509509$wcif_getinput = str_replace(array("\r\n","\r")," ", $wcif_getrawinput);
    510 if(get_option('users_can_register') == 0){
     510if(get_option('users_can_register') == 0 && (!current_user_can('update_core')){
    511511    echo 'only administrators who are logged in can add items to the list';
    512512    }else{
Note: See TracChangeset for help on using the changeset viewer.