mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Fix user_dashboard broken user_edit link (#2410)
On the user_dashboard clicking on the username brings you to a 404 page. Fixed link path.
This commit is contained in:
committed by
FusionPBX
parent
927c19c37a
commit
e528163f5e
@@ -73,7 +73,7 @@
|
||||
echo " <b>".$text['header-user_dashboard']."</b><br />";
|
||||
echo " </td>\n";
|
||||
echo " <td valign='top' style='text-align: right; white-space: nowrap;'>\n";
|
||||
echo " ".$text['label-welcome']." <a href='".PROJECT_PATH."/core/user_settings/user_edit.php'>".$_SESSION["username"]."</a>";
|
||||
echo " ".$text['label-welcome']." <a href='".PROJECT_PATH."/core/users/user_edit.php?id=user'>".$_SESSION["username"]."</a>";
|
||||
echo " </td>\n";
|
||||
echo " </tr>\n";
|
||||
echo " <tr>\n";
|
||||
|
||||
Reference in New Issue
Block a user