Changeset 917

Show
Ignore:
Timestamp:
02/26/08 21:46:36 (9 months ago)
Author:
_ck_
Message:

cosmetic tweaks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bbcode-lite/trunk/BBcode-lite.php

    r916 r917  
    1313*/ 
    1414 
    15 add_filter('post_text', 'bbcode_lite',7);       //  to store bbcode as html permanently,  change 'post_text' to 'pre_text' which is faster but harder for users to edit 
     15add_filter('post_text', 'bbcode_lite',7);       //  to store bbcode as html permanently,  change 'post_text' to 'pre_post' which is faster but harder for users to edit 
    1616add_filter( 'bb_allowed_tags', 'bbcode_lite_extra_tags' );       // unfortunately to make bbcode fast we need to allow some extra tags like "font" 
    1717 
  • bbcode-lite/trunk/readme.txt

    r916 r917  
    2626== Installation == 
    2727 
    28 * Add the `bbcode-light.php` file to bbPress' `my-plugins/` directory and activate. 
     28* Add the `bbcode-lite.php` file to bbPress' `my-plugins/` directory and activate. 
    2929 
    3030== Frequently Asked Questions == 
     
    4848* there may be others, periodically updated based upon request 
    4949 
    50 = now ignores BBcode inbetween backticks or `<code>`
     50= What if I want to show BBcode examples and not have them evaluated?
    5151 
    52 = There are still some weird special circumstances where the BBcode may not work properly, 
    53 be sure to let me know if you find some and I will address them as time permits.  = 
     52* BBcode inbetween backticks or `code`  is ignored and will not be processed 
    5453 
    55 =  If you have an extremely active forum or overloaded server you can change `pre_text` to `post_text` within the plugin to permanently save changes = 
     54= some BBcode is not working? = 
     55 
     56* There are still some weird special circumstances where the BBcode may not work properly, 
     57be sure to let me know if you find some and I will address them as time permits.  
     58 
     59= It's fast but my forum is huge and it's still too slow? = 
     60 
     61* If you have an extremely active forum or overloaded server you can change  
     62`post_text` to `pre_post` within the plugin filter to permanently save bbcode as html. 
     63(however this makes it a bit harder for users to re-edit a post as the bbcode will then appear as html) 
    5664 
    5765== License ==