Changeset 679
- Timestamp:
- 2008-07-18 00:14:20 (7 weeks ago)
- Location:
- plugins/markup/trunk
- Files:
-
- 2 modified
-
markup.plugin.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/markup/trunk/markup.plugin.php
r230 r679 13 13 'author' => 'Habari Community', 14 14 'authorurl' => 'http://habariproject.org/', 15 'version' => '0. 1',15 'version' => '0.2', 16 16 'description' => 'Adds easy tag insertion to Habari\'s editor', 17 17 'copyright' => '2008' … … 22 22 public function action_admin_header($theme) 23 23 { 24 if ( $theme-> admin_page == 'publish' ) {24 if ( $theme->page == 'publish' ) { 25 25 Stack::add( 'admin_header_javascript', $this->get_url() . '/markitup/jquery.markitup.pack.js' ); 26 26 Stack::add( 'admin_header_javascript', $this->get_url() . '/markitup/sets/html/set.js' ); … … 32 32 33 33 public function action_admin_footer($theme) { 34 if ( $theme-> admin_page == 'publish' ) {34 if ( $theme->page == 'publish' ) { 35 35 echo <<<MARKITUP 36 36 <script type="text/javascript"> -
plugins/markup/trunk/readme.txt
r229 r679 1 1 Plugin: markUp 2 2 URL: http://habariproject.org 3 Version: 0. 13 Version: 0.2 4 4 Author: Habari Project 5 5 … … 32 32 Changelog 33 33 34 Version 0.2 - Fix: Changes necessitated by admin api changes 35 34 36 Version 0.1 - Initial release
