Changeset 6303

Show
Ignore:
Timestamp:
08/19/06 06:28:48 (2 years ago)
Author:
GamerZ
Message:

[page_useronline] instead of <page_useronline>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wp-useronline/trunk/readme.html

    r6287 r6303  
    390390                        </li> 
    391391                        <li> 
    392                               Type '<b>&lt;page_useronline&gt</b>' in the post's content area (without the quotes) 
     392                              Type '<b>[page_useronline]</b>' in the post's content area (without the quotes) 
    393393                        </li> 
    394394                        <li> 
  • wp-useronline/trunk/useronline/useronline.php

    r6293 r6303  
    603603 
    604604### Function: Place Polls Archive In Content 
    605 add_filter('the_content', 'place_useronlinepage', '12'); 
     605add_filter('the_content', 'place_useronlinepage', '7'); 
    606606function place_useronlinepage($content){ 
    607      $content = preg_replace( "/\<page_useronline\>/ise", "useronline_page()", $content);  
     607     $content = preg_replace( "/\[page_useronline\]/ise", "useronline_page()", $content);  
    608608    return $content; 
    609609}