Changeset 1831

Show
Ignore:
Timestamp:
04/10/08 06:09:15 (8 months ago)
Author:
takayama
Message:

Fixed BugId:77293
* Fixed Typo
* Added class argument

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/release-34/php/lib/block.mtfoldernext.php

    r1174 r1831  
    88require_once('block.mtcategorynext.php'); 
    99function smarty_block_mtfoldernext($args, $content, &$ctx, &$repeat) { 
    10     $args['clas'] = 'folder'; 
     10    $args['class'] = 'folder'; 
    1111    return smarty_block_mtcategorynext($args, $content, $ctx, $repeat); 
    1212} 
  • branches/release-34/php/lib/function.mtfolderpath.php

    r1174 r1831  
    88require_once('function.mtsubcategorypath.php'); 
    99function smarty_function_mtfolderpath($args, &$ctx) { 
     10    $args['class'] = 'folder'; 
    1011    return smarty_function_mtsubcategorypath($args, $ctx); 
    1112}