Changeset 2098

Show
Ignore:
Timestamp:
04/25/08 03:52:03 (7 months ago)
Author:
bchoate
Message:

Support 'top' attribute for MTTags for dynamic publishing. BugId:68999

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/release-36/php/lib/MTUtil.php

    r2095 r2098  
    11431143 
    11441144# sorts by length of tag name, from longest to shortest 
     1145function tagarray_name_sort($a, $b) { 
     1146    return strcmp($a['tag_name'], $b['tag_name']); 
     1147} 
     1148 
    11451149function tagarray_length_sort($a, $b) { 
    11461150        $al = strlen($a['tag_name']);