This commit is contained in:
Zongjun Lan
2022-04-02 10:56:10 +08:00
parent b3c861aa05
commit f61cdef8d0
4 changed files with 11 additions and 6 deletions
@@ -1,3 +1,3 @@
<?php
include $app->getExtensionRoot().'/biz/attend/ext/view/stat.oa.html.hook.php';
include $app->getExtensionRoot() . '/biz/attend/ext/view/stat.oa.html.hook.php';
?>
@@ -0,0 +1,3 @@
<script>
$('#headerActions').css("right", '210px');
</script>
@@ -47,8 +47,8 @@
{
if(common::hasPriv('execution', $view))
{
$kanbanview = $view;
break;
$kanbanview = $view;
break;
}
}
}
+5 -3
View File
@@ -242,9 +242,11 @@ class programModel extends model
$product->plans = zget($plans, $product->id, array());
/* Convert predefined HTML entities to characters. */
!empty($product->plans) && array_map(function($planVal){
return $planVal->title = htmlspecialchars_decode($planVal->title,ENT_QUOTES);
},$product->plans);
!empty($product->plans) && array_map(function($planVal)
{
return $planVal->title = htmlspecialchars_decode($planVal->title, ENT_QUOTES);
},
$product->plans);
$product->releases = zget($releases, $product->id, array());
$projects = zget($projectGroup, $product->id, array());