Plugin Directory

Changeset 668247


Ignore:
Timestamp:
02/15/2013 04:34:47 AM (13 years ago)
Author:
ntemple
Message:

update to 1.0.3. See https://github.com/ntemple/bracketpress/commits/master

Location:
bracketpress/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • bracketpress/trunk/includes/admin/admin.php

    r666871 r668247  
    148148    function add_pages() {
    149149        add_submenu_page ( 'edit.php?post_type=brackets', 'BracketPress > Team Data', 'Team Data', 'manage_options', 'bracketpress_teams', array($this, 'forms_page'));
    150         //add_submenu_page ( 'edit.php?post_type=brackets', 'BracketPress > Location Data', 'Location Data', 'manage_options', 'bracketpress_location', array($this, 'location_page'));
     150        add_submenu_page ( 'edit.php?post_type=brackets', 'BracketPress > Add Ons', 'Add Ons',     'manage_options', 'bracketpress_addons', array($this, 'addons_page'));
    151151    }
    152152
     
    174174    }
    175175
     176    function addons_page() {
     177        include(bracketpress()->plugin_dir . 'templates/addons.php');
     178    }
     179
    176180}
    177181
  • bracketpress/trunk/includes/core/actions.php

    r666871 r668247  
    5454function bracketpress_create_sub_action($hook, $action, $priority = 10, $params = 0) {
    5555
    56     $callback = "function $action() { do_action('$action', func_get_args()); }";
     56    $callback = "function $action() { \$args = func_get_args(); do_action('$action', \$args); }";
    5757    eval($callback);
    5858
  • bracketpress/trunk/readme.txt

    r666871 r668247  
    22Contributors: ntemple, scotthack
    33Donate link: http://www.bracketpress.com/donate
    4 Tags: ncaa, bracket
     4Tags: ncaa, bracket, march madness, brackets, bracket pool, tournament, basketball, sports
    55Requires at least: 3.5.0
    66Tested up to: 3.5.1
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1616branding.
    1717
     18An inside look :
     19
     20http://www.youtube.com/watch?v=JtOxPQt7Z5Q
     21
    1822== Features ==
    1923
     
    2226== Support ==
    2327
    24 Priority support and additional plugins are available via our website at http://www.bracketpress.com
     28Priority support and additional plugins are available via our website at [http://www.bracketpress.com] (http://www.bracketpress.com)
    2529
    2630== Installation ==
     
    4852== Changelog ==
    4953
     54= 1.0.3 =
     55* Critical update for PHP 5.2 users
     56* Added Store
     57* Minor cleanups
     58
    5059= 1.0.2 =
    5160* Improved team handling
     
    6271* First public release
    6372* completed initial development
     73== Upgrade Notice ==
    6474
    65 = 0.6.0 =
    66 * integrated changes for teams table update, added missing conference, streamlined some code
    67 * split out html to templates
    68 * added points_awarded to match table (activate / deactivate to update table)
    69 
    70 = 0.03 =
    71 * Nick added database install on plugin activation.
    72 * Scott added function to force custom post type to use a specific template (hardcoded currently).
    73 * Added master_untouched.php to template directory for reference.
    74 * Fixed up the bracketpress_main shortcode a bit. #
    75 
    76 = 0.02 =
    77 * Added Settings menu. ( About 20% done )
    78 * Added "Main" shortcode
    79 * Created logic for display of "Main" shortcode.
    80 * Started function to check if bracket is locked.
    81 * Started function to display input form.
    82 * Started function to display a login/register form if not logged in.
    83 * Started widget class.
    84 
    85 = 0.01 =
    86 * Initial Version
    87 
    88 == Upgrade Notice ==
     75= 1.0.3 =
     76* Critical update for PHP 5.2
    8977
    9078= 1.0.1 =
     
    10492
    10593
    106 
    107 
Note: See TracChangeset for help on using the changeset viewer.