Plugin Directory

Changeset 625656


Ignore:
Timestamp:
11/15/2012 11:59:11 AM (13 years ago)
Author:
manski
Message:

Applied 0.9.5.1 hotfix

Location:
blogtext/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • blogtext/trunk/api/plugin-api.php

    r625595 r625656  
    134134  public function get_plugin_version() {
    135135    $this->check_wordpress_was_loaded();
    136     if (!function_exists('get_plugins')) {
     136    if (!function_exists('get_plugin_data')) {
    137137      require_once(ABSPATH.'wp-admin/includes/plugin.php');
    138138    }
    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'];
    140141  }
    141142
  • blogtext/trunk/blogtext.php

    r625595 r625656  
    44Plugin URI: http://wordpress.org/extend/plugins/blogtext/
    55Description: Allows you to write your posts and pages with an alternative, easy-to-learn, and fast-to-type syntax
    6 Version: 0.9.5
     6Version: 0.9.5.1
    77Author: Sebastian Krysmanski
    88Author URI: http://mayastudios.com
  • blogtext/trunk/readme.txt

    r625595 r625656  
    44Requires at least: 3.0.0
    55Tested up to: 3.4.2
    6 Stable tag: 0.9.5
     6Stable tag: 0.9.5.1
    77
    88BlogText is a plugin for WordPress that adds a simple wiki-like syntax to WordPress and enriches it with a
     
    4848
    4949== Changelog ==
     50
     51= 0.9.5.1 =
     52* Fixed PHP parser error present only in PHP < 5.4
    5053
    5154= 0.9.5 =
Note: See TracChangeset for help on using the changeset viewer.