Changeset 1128
- Timestamp:
- 05/28/08 04:59:09 (6 months ago)
- Files:
-
- bb-attachments/trunk/bb-attachments.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
bb-attachments/trunk/bb-attachments.php
r1114 r1128 6 6 Author: _ck_ 7 7 Author URI: http://bbShowcase.org 8 Version: 0.1. 18 Version: 0.1.2 9 9 10 10 License: CC-GNU-GPL http://creativecommons.org/licenses/GPL/2.0/ … … 86 86 if ($bb_attachments['style']) {add_action('bb_head', 'bb_attachments_add_css');} // add css if present (including Kakumei 0.9.0.2 LI fix!) 87 87 88 if ( !is_topic() && !isset($_GET["new"])) {89 if ($bb_attachments['title']) {add_filter('topic_title', 'bb_attachments_title',200);} 90 } else{88 if ($bb_attachments['title'] && !is_topic()) {add_filter('topic_title', 'bb_attachments_title',200);} 89 90 if (isset($_GET["new"]) || is_topic() || is_forum()) { 91 91 add_action( 'bb_topic.php', 'bb_attachments_cache' ); 92 92 add_filter('post_text', 'bb_attachments_post_footer',4);
