* Fix the problem of reporting errors on the batch editing story page.

This commit is contained in:
tianshujie
2021-11-11 13:44:27 +08:00
parent c606215adb
commit edd64950ab
+3 -2
View File
@@ -101,10 +101,11 @@ foreach(explode(',', $showFields) as $field)
</td>
<td class='text-left<?php echo zget($visibleFields, 'plan', ' hidden')?>'>
<?php
$productPlans = array();
$productPlans = array('' => '');
if($story->branch != BRANCH_MAIN)
{
$productPlans = zget($plans, $story->branch) + zget($plans, 0);
if(isset($plans[$story->branch])) $productPlans .= $plans[$story->branch];
if(isset($plans[0])) $productPlans .= $plans[0];
}
else
{