Plugin Directory

Changeset 866890


Ignore:
Timestamp:
02/28/2014 12:05:11 PM (12 years ago)
Author:
pricemesh
Message:

updated to 1.2.2. fixed a bug for users running with php 5.3

Location:
pricemesh/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pricemesh/trunk/admin/pricemesh-admin.php

    r866107 r866890  
    253253     */
    254254    public function settings_auth_token_callback(){
    255         $setting = self::get_pricemesh_settings()["token"];
     255        $opts = self::get_pricemesh_settings();
     256        $setting = $opts["token"];
    256257        $name = "pricemesh_option_token";
    257258        echo "<input type='text' name='$name' id='$name' value='$setting' class='regular-text'/>";
     
    266267     */
    267268    public function settings_auth_secret_callback(){
    268         $setting = self::get_pricemesh_settings()["secret"];
     269        $opts = self::get_pricemesh_settings();
     270        $setting = $opts["secret"];
    269271        echo "<input type='text' name='pricemesh_option_secret' value='$setting' class='regular-text'/>";
    270272        if(empty($setting)){
     
    286288     */
    287289    public function settings_basic_country_callback(){
    288         $setting = self::get_pricemesh_settings()["country"];
     290        $opts = self::get_pricemesh_settings();
     291        $setting = $opts["country"];
    289292        $available_countries = array("de");
    290293
     
    312315     */
    313316    public function settings_3rd_party_wp_robot_callback(){
    314         $setting = self::get_pricemesh_settings()["wp_robot_integration"];
     317        $opts = self::get_pricemesh_settings();
     318        $setting = $opts["wp_robot_integration"];
    315319        if($this->is_wp_robot_installed()){
    316320            $checked = checked('1', $setting);
  • pricemesh/trunk/pricemesh.php

    r866831 r866890  
    44Plugin URI: https://www.pricemesh.io/plugins/wordpress/
    55Description: Mit diesem Plugin ist es möglich Wordpress um einen eigenen Preisvergleich zu erweitern.
    6 Version: 1.2.1
     6Version: 1.2.2
    77Author: pricemesh
    88Author URI: https://www.pricemesh.io
  • pricemesh/trunk/public/pricemesh-public.php

    r866831 r866890  
    2222     * @var     string
    2323     */
    24     const VERSION = '1.2.1';
     24    const VERSION = '1.2.2';
    2525
    2626    /**
  • pricemesh/trunk/readme.txt

    r866831 r866890  
    44Requires at least: 3.4
    55Tested up to: 3.8
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7373== Changelog ==
    7474
     75= 1.2.2 =
     76* Bugfix
     77
    7578= 1.2.1 =
    7679* Bugfix
Note: See TracChangeset for help on using the changeset viewer.