forked from extern/egroupware
bugfix: application target was not used for extra-icons (manual opened in main-window and not in popup)
This commit is contained in:
parent
f1d7915da6
commit
3282a61901
@ -116,7 +116,7 @@
|
|||||||
$app_extra_icons .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
$app_extra_icons .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
$app_extra_icons .= ' >' . $icon . '</a></td>';
|
$app_extra_icons .= $app_data['target'].' >' . $icon . '</a></td>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -137,7 +137,7 @@
|
|||||||
$app_extra_icons .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
$app_extra_icons .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
$app_extra_icons .= '>' . $title . '</a></td></tr>';
|
$app_extra_icons .= $app_data['target'].'>' . $title . '</a></td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($icon);
|
unset($icon);
|
||||||
|
@ -117,7 +117,7 @@
|
|||||||
$app_extra_icons .= ' target="' . $GLOBALS['egw_info']['flags']['navbar_target'] . '"';
|
$app_extra_icons .= ' target="' . $GLOBALS['egw_info']['flags']['navbar_target'] . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
$app_extra_icons .= ' >' . $icon . '</a></td>';
|
$app_extra_icons .= $app_data['target'].' >' . $icon . '</a></td>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -138,7 +138,7 @@
|
|||||||
$app_extra_icons .= ' target="' . $GLOBALS['egw_info']['flags']['navbar_target'] . '"';
|
$app_extra_icons .= ' target="' . $GLOBALS['egw_info']['flags']['navbar_target'] . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
$app_extra_icons .= '>' . $title . '</a></td></tr>';
|
$app_extra_icons .= $app_data['target'].'>' . $title . '</a></td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($icon);
|
unset($icon);
|
||||||
|
@ -113,7 +113,7 @@
|
|||||||
$app_extra_icons .= ' target="' . $GLOBALS['egw_info']['flags']['navbar_target'] . '"';
|
$app_extra_icons .= ' target="' . $GLOBALS['egw_info']['flags']['navbar_target'] . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
$app_extra_icons .= ' >' . $icon . '</a></td>';
|
$app_extra_icons .= $app_data['target'].'>' . $icon . '</a></td>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -134,7 +134,7 @@
|
|||||||
$app_extra_icons .= ' target="' . $GLOBALS['egw_info']['flags']['navbar_target'] . '"';
|
$app_extra_icons .= ' target="' . $GLOBALS['egw_info']['flags']['navbar_target'] . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
$app_extra_icons .= '>' . $title . '</a></td></tr>';
|
$app_extra_icons .= $app_data['target'].'>' . $title . '</a></td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($icon);
|
unset($icon);
|
||||||
|
Loading…
Reference in New Issue
Block a user