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:
Dean Montgomery
2017-03-07 23:22:27 -08:00
committed by FusionPBX
parent 0bbbfeb1b6
commit 49fdd66070

View File

@@ -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";