bugfix: application target was not used for extra-icons (manual opened in main-window and not in popup)

This commit is contained in:
Ralf Becker 2006-01-06 04:55:10 +00:00
parent f1d7915da6
commit 3282a61901
3 changed files with 6 additions and 6 deletions

View File

@ -116,7 +116,7 @@
$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 .= '>' . $title . '</a></td></tr>';
$app_extra_icons .= $app_data['target'].'>' . $title . '</a></td></tr>';
}
unset($icon);

View File

@ -117,7 +117,7 @@
$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 .= '>' . $title . '</a></td></tr>';
$app_extra_icons .= $app_data['target'].'>' . $title . '</a></td></tr>';
}
unset($icon);

View File

@ -113,7 +113,7 @@
$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 .= '>' . $title . '</a></td></tr>';
$app_extra_icons .= $app_data['target'].'>' . $title . '</a></td></tr>';
}
unset($icon);