Merge branch 'ent-8415-lista-templates-descuadrada-usuario-sin-RM' into 'develop'
Fix reports view Closes pandora_enterprise#8415 See merge request artica/pandorafms!4703
This commit is contained in:
commit
6e98545bda
|
@ -938,7 +938,7 @@ switch ($action) {
|
|||
$table->head[$next] = __('Private');
|
||||
$table->headstyle[$next] = 'min-width: 40px;text-align: left;';
|
||||
$table->size[$next] = '2%';
|
||||
if (defined('METACONSOLE')) {
|
||||
if (is_metaconsole() === true) {
|
||||
$table->align[$next] = '';
|
||||
} else {
|
||||
$table->align[$next] = 'left';
|
||||
|
@ -952,7 +952,7 @@ switch ($action) {
|
|||
|
||||
$next++;
|
||||
$op_column = false;
|
||||
if (!defined('METACONSOLE')) {
|
||||
if (is_metaconsole() === false) {
|
||||
$op_column = true;
|
||||
$table->head[$next] = '<span title="Operations">'.__('Op.').'</span>'.html_print_checkbox(
|
||||
'all_delete',
|
||||
|
@ -967,6 +967,8 @@ switch ($action) {
|
|||
// $table->size = array ();
|
||||
$table->size[$next] = '10%';
|
||||
$table->align[$next] = 'right';
|
||||
} else {
|
||||
$table->size[1] = '40%';
|
||||
}
|
||||
|
||||
$columnview = false;
|
||||
|
@ -1266,7 +1268,7 @@ switch ($action) {
|
|||
|| check_acl($config['id_user'], 0, 'RM')
|
||||
) {
|
||||
echo '<form method="post" action="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&tab=main&action=new&pure='.$pure.'">';
|
||||
if (defined('METACONSOLE')) {
|
||||
if (is_metaconsole() === true) {
|
||||
echo '<div class="action-buttons w100p">';
|
||||
} else {
|
||||
echo '<div class="action-buttons w100p">';
|
||||
|
|
Loading…
Reference in New Issue