Changeset 442438
- Timestamp:
- 09/23/2011 03:20:41 AM (15 years ago)
- Location:
- where-can-i-find/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
wherecanifind.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
where-can-i-find/trunk/readme.txt
r442424 r442438 4 4 Requires at least: 3.2.1 5 5 Tested up to: 3.2.1 6 Stable tag: 2. 86 Stable tag: 2.9 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.9 = 40 * 22 Sep 2011 41 * Another bugfix (line 101, wherecanifind.php in_array arguments reversed) 39 42 = 2.8 = 40 43 * 22 Sep 2011 … … 51 54 52 55 == Upgrade notice == 56 = 2.9 = bug fix, error fix, update NOW! 53 57 = 2.8 = bug fixes, error fixes, update NOW! 54 58 = 2.3 = There were some files missing from the 2.0 release. Upgrade now! -
where-can-i-find/trunk/wherecanifind.php
r442424 r442438 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. 86 Version: 2.9 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. 8', //hate using a string value here, but need it to hold non-numeric values29 'version'=>'2.9', //hate using a string value here, but need it to hold non-numeric values 30 30 'slug'=>'wcif', 31 31 'dbversion'=>'1.0.1', … … 99 99 $installed_plugins = get_option('vagabumming_plugins_installed'); 100 100 $plugin_name = self::$vagabumming_plugin_values['name']; 101 if(!in_array($ installed_plugins,$plugin_name)){101 if(!in_array($plugin_name,$installed_plugins)){ 102 102 $installed_plugins[] = $plugin_name; 103 103 update_option('vagabumming_plugins_installed',$installed_plugins);
Note: See TracChangeset
for help on using the changeset viewer.