* Ajust lang.

This commit is contained in:
mayue
2022-09-07 14:49:25 +08:00
parent a9151f8429
commit 087c85c04f
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -57,7 +57,7 @@ if(isset($pageCSS)) css::internal($pageCSS);
<?php endif;?>
<?php if($module->type != 'line'):?>
<tr <?php if($hidden) echo "style='display:none'";?>>
<th class='thWidth'><?php echo ($type == 'doc' || $type == 'feedback') ? $lang->tree->parentCate : $lang->tree->parent;?></th>
<th class='thWidth'><?php echo ($type == 'doc') ? $lang->tree->parentCate : $lang->tree->parent;?></th>
<td><?php echo html::select('parent', $optionMenu, $module->parent, "class='form-control chosen'");?></td>
</tr>
<?php endif;?>
@@ -65,7 +65,7 @@ if(isset($pageCSS)) css::internal($pageCSS);
<th class='thWidth'>
<?php
$lblTreeName = $lang->tree->name;
if($type == 'doc' || $type == 'feedback') $lblTreeName = $lang->tree->cate;
if($type == 'doc') $lblTreeName = $lang->tree->cate;
if($type == 'line') $lblTreeName = $lang->tree->line;
echo $lblTreeName;
?>