Changeset 2045

Show
Ignore:
Timestamp:
01/04/05 23:29:13 (4 years ago)
Author:
rboren
Message:

Keep it separated.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/template-functions-category.php

    r1997 r2045  
    6161} 
    6262 
    63 function the_category($seperator = '', $parents='') { 
     63function the_category($separator = '', $parents='') { 
    6464    $categories = get_the_category(); 
    6565    if (empty($categories)) { 
     
    6969 
    7070    $thelist = ''; 
    71     if ('' == $seperator) { 
     71    if ('' == $separator) { 
    7272        $thelist .= '<ul class="post-categories">'; 
    7373        foreach ($categories as $category) { 
     
    9898        foreach ($categories as $category) { 
    9999            $category->cat_name = $category->cat_name; 
    100             if (0 < $i) $thelist .= $seperator . ' '; 
     100            if (0 < $i) $thelist .= $separator . ' '; 
    101101            switch(strtolower($parents)) { 
    102102                case 'multiple':