* Finish task 44491.

This commit is contained in:
wangjianhua
2021-11-18 02:39:03 +00:00
parent a1e07d2b4b
commit dcb971c040
+3 -2
View File
@@ -485,9 +485,10 @@ $projectIDParam = $isProjectStory ? "projectID=$projectID&" : '';
<?php
foreach($plans as $planID => $plan)
{
$searchKey = $withSearch ? ('data-key="' . zget($plansPinYin, $plan, '') . '"') : '';
$planTitle = strip_tags($plan);
$searchKey = $withSearch ? ('data-key="' . zget($plansPinYin, $plan, '') . '"') : '';
$actionLink = $this->createLink('story', 'batchChangePlan', "planID=$planID");
echo html::a('#', $plan, '', "$searchKey title='{$plan}' onclick=\"setFormAction('$actionLink', 'hiddenwin', '#productStoryForm')\"");
echo html::a('#', $plan, '', "$searchKey title='{$planTitle}' onclick=\"setFormAction('$actionLink', 'hiddenwin', '#productStoryForm')\"");
}
?>
</div>