codeReview

This commit is contained in:
sunjun
2022-06-17 07:04:52 +00:00
parent fec9f4f1dd
commit ca2b45736b
+1 -1
View File
@@ -188,7 +188,7 @@
$names = '';
foreach($programList as $id => $name)
{
$names .= common::hasPriv('program', 'product')? html::a($this->createLink('program', 'product', "programID=$id"), $name) . '/ ' : $name . '/ ';
$names .= common::hasPriv('program', 'product') ? html::a($this->createLink('program', 'product', "programID=$id"), $name) . '/ ' : $name . '/ ';
}
echo rtrim($names, '/ ');
?>