Plugin Directory

Changeset 186231


Ignore:
Timestamp:
12/22/2009 06:26:45 PM (16 years ago)
Author:
plpetitclerc
Message:
 
Location:
wp-konami
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • wp-konami/tags/1.3/readme.txt

    r184122 r186231  
    33Tags: jquery, konami
    44Requires at least: 2.7
    5 Tested up to: 2.8.6
    6 Stable tag: 1.2
     5Tested up to: 2.8.9
     6Stable tag: 1.3
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    2828
    2929== ChangeLog ==
     30
     31= Version 1.3 =
     32
     33* Fixed Settings Bug ([K](http://blog.fusi0n.org/wp-konami/konami-code-hook-for-your-wordpress-blog/comment-page-1#comment-744))
    3034
    3135= Version 1.2 =
  • wp-konami/tags/1.3/wp-konami.php

    r184122 r186231  
    44Plugin URI: http://blog.fusi0n.org/category/wp-konami
    55Description: Add the Konami Code to your WordPress blog and redirect to a custom URL on successful input sequence
    6 Version: 1.2
     6Version: 1.3
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    9393    add_settings_section('wp-konami', 'WP-Konami Options', array(&$this, 'wpk_section_callback'), 'misc');
    9494    foreach ($this->opts as $optName => &$optVal) {
    95       register_setting('konami', $k);
     95      register_setting('konami', $optName);
    9696      add_settings_field($optName, $optVal['name'], array(&$this, 'wpk_settings_'.$optName), 'misc', 'wp-konami');
    9797    }
  • wp-konami/trunk/readme.txt

    r184122 r186231  
    33Tags: jquery, konami
    44Requires at least: 2.7
    5 Tested up to: 2.8.6
    6 Stable tag: 1.2
     5Tested up to: 2.8.9
     6Stable tag: 1.3
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    2828
    2929== ChangeLog ==
     30
     31= Version 1.3 =
     32
     33* Fixed Settings Bug ([K](http://blog.fusi0n.org/wp-konami/konami-code-hook-for-your-wordpress-blog/comment-page-1#comment-744))
    3034
    3135= Version 1.2 =
  • wp-konami/trunk/wp-konami.php

    r184122 r186231  
    44Plugin URI: http://blog.fusi0n.org/category/wp-konami
    55Description: Add the Konami Code to your WordPress blog and redirect to a custom URL on successful input sequence
    6 Version: 1.2
     6Version: 1.3
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    9393    add_settings_section('wp-konami', 'WP-Konami Options', array(&$this, 'wpk_section_callback'), 'misc');
    9494    foreach ($this->opts as $optName => &$optVal) {
    95       register_setting('konami', $k);
     95      register_setting('konami', $optName);
    9696      add_settings_field($optName, $optVal['name'], array(&$this, 'wpk_settings_'.$optName), 'misc', 'wp-konami');
    9797    }
Note: See TracChangeset for help on using the changeset viewer.