Changeset 625656
- Timestamp:
- 11/15/2012 11:59:11 AM (13 years ago)
- Location:
- blogtext/trunk
- Files:
-
- 3 edited
-
api/plugin-api.php (modified) (1 diff)
-
blogtext.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blogtext/trunk/api/plugin-api.php
r625595 r625656 134 134 public function get_plugin_version() { 135 135 $this->check_wordpress_was_loaded(); 136 if (!function_exists('get_plugin s')) {136 if (!function_exists('get_plugin_data')) { 137 137 require_once(ABSPATH.'wp-admin/includes/plugin.php'); 138 138 } 139 return get_plugin_data($this->plugin_file, false, false)['Version']; 139 $plugin_data = get_plugin_data($this->plugin_file, false, false); 140 return $plugin_data['Version']; 140 141 } 141 142 -
blogtext/trunk/blogtext.php
r625595 r625656 4 4 Plugin URI: http://wordpress.org/extend/plugins/blogtext/ 5 5 Description: Allows you to write your posts and pages with an alternative, easy-to-learn, and fast-to-type syntax 6 Version: 0.9.5 6 Version: 0.9.5.1 7 7 Author: Sebastian Krysmanski 8 8 Author URI: http://mayastudios.com -
blogtext/trunk/readme.txt
r625595 r625656 4 4 Requires at least: 3.0.0 5 5 Tested up to: 3.4.2 6 Stable tag: 0.9.5 6 Stable tag: 0.9.5.1 7 7 8 8 BlogText is a plugin for WordPress that adds a simple wiki-like syntax to WordPress and enriches it with a … … 48 48 49 49 == Changelog == 50 51 = 0.9.5.1 = 52 * Fixed PHP parser error present only in PHP < 5.4 50 53 51 54 = 0.9.5 =
Note: See TracChangeset
for help on using the changeset viewer.