Changeset 9561 for temp/trunk


Ignore:
Timestamp:
2006/11/29 23:25:53 (20 years ago)
Author:
uehara
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/contents/file_manager.php

    r9560 r9561  
    126126// ¥Ä¥ê¡¼ÇÛÎóºîÀ®ÍÑ javascript 
    127127$arrTree = sfGetFileTree($top_dir, $_POST['tree_status']); 
    128 $objPage->$tpl_javascript .= "arrTree = new Array();"; 
     128$objPage->tpl_javascript .= "arrTree = new Array();"; 
    129129foreach($arrTree as $arrVal) { 
    130     $objPage->$tpl_javascript .= "arrTree[".$arrVal['count']."] = new Array(".$arrVal['count'].", ".$arrVal['type'].", ".$arrVal['path'].", ".$arrVal['rank'].","; 
     130    $objPage->tpl_javascript .= "arrTree[".$arrVal['count']."] = new Array(".$arrVal['count'].", ".$arrVal['type'].", ".$arrVal['path'].", ".$arrVal['rank'].","; 
    131131    if ($arrVal['open']) { 
    132         $objPage->$tpl_javascript .= "true);"; 
     132        $objPage->tpl_javascript .= "true);"; 
    133133    } else { 
    134         $objPage->$tpl_javascript .= "false);"; 
     134        $objPage->tpl_javascript .= "false);"; 
    135135    } 
    136136} 
Note: See TracChangeset for help on using the changeset viewer.