Show
Ignore:
Timestamp:
05/17/08 02:50:22 (8 months ago)
Author:
michaeltwofish
Message:

Consistently use the class name instead of self in tags.php.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/htdocs/system/classes/tags.php

    r1735 r1738  
    119119    public static function post_count($tag) { 
    120120        if ( is_int( $tag ) ) { 
    121             $tag= self::get_by_id( $tag ); 
     121            $tag= Tags::get_by_id( $tag ); 
    122122        } 
    123123        else if ( is_string( $tag ) ) { 
    124             $tag= self::get_by_slug( Utils::slugify($tag) ); 
     124            $tag= Tags::get_by_slug( Utils::slugify($tag) ); 
    125125        } 
    126126