* Fix the problem of reporting errors on the batch editing story page.
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user