Changeset 679

Show
Ignore:
Timestamp:
2008-07-18 00:14:20 (7 weeks ago)
Author:
rickc
Message:

Plugin: markup. Interface wasn't showing on the publish page due to name changes in the admin handler.

Location:
plugins/markup/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • plugins/markup/trunk/markup.plugin.php

    r230 r679  
    1313      'author' => 'Habari Community', 
    1414      'authorurl' => 'http://habariproject.org/', 
    15       'version' => '0.1', 
     15      'version' => '0.2', 
    1616      'description' => 'Adds easy tag insertion to Habari\'s editor', 
    1717      'copyright' => '2008' 
     
    2222    public function action_admin_header($theme) 
    2323    { 
    24         if ( $theme->admin_page == 'publish' ) { 
     24        if ( $theme->page == 'publish' ) { 
    2525            Stack::add( 'admin_header_javascript', $this->get_url() . '/markitup/jquery.markitup.pack.js' ); 
    2626            Stack::add( 'admin_header_javascript', $this->get_url() . '/markitup/sets/html/set.js' ); 
     
    3232 
    3333    public function action_admin_footer($theme) { 
    34         if ( $theme->admin_page == 'publish' ) { 
     34        if ( $theme->page == 'publish' ) { 
    3535            echo <<<MARKITUP 
    3636<script type="text/javascript"> 
  • plugins/markup/trunk/readme.txt

    r229 r679  
    11Plugin: markUp 
    22URL: http://habariproject.org 
    3 Version: 0.1 
     3Version: 0.2 
    44Author: Habari Project 
    55 
     
    3232Changelog 
    3333 
     34Version 0.2 - Fix: Changes necessitated by admin api changes 
     35 
    3436Version 0.1 - Initial release