* fix bug #21424
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user