This commit is contained in:
iBNu Maksum 2025-02-07 15:19:04 +07:00
parent b6fadae2e5
commit e0884c0a5a
No known key found for this signature in database
GPG Key ID: 7FC82848810579E5
3 changed files with 11 additions and 6 deletions

View File

@ -5,9 +5,13 @@
**/ **/
if(Admin::getID()){ if(Admin::getID()){
r2(getUrl('dashboard')); //r2(getUrl('dashboard'));
}if(User::getID()){ $handler = 'dashboard';
r2(getUrl('home')); }else if(User::getID()){
//r2(getUrl('home'));
$handler = 'home';
}else{ }else{
r2(getUrl('login')); //r2(getUrl('login'));
$handler = 'login';
} }
include($root_path . File::pathFixer('system/controllers/' . $handler . '.php'));

View File

@ -1026,5 +1026,6 @@
"Oops__The_page_you_are_looking_for_was_not_found": "Oops! The page you are looking for was not found", "Oops__The_page_you_are_looking_for_was_not_found": "Oops! The page you are looking for was not found",
"Back_to_Dashboard": "Back to Dashboard", "Back_to_Dashboard": "Back to Dashboard",
"Continue_the_VPN_creation_process_": "Continue the VPN creation process?", "Continue_the_VPN_creation_process_": "Continue the VPN creation process?",
"VPN": "VPN" "VPN": "VPN",
"Go_Back": "Go Back"
} }

View File

@ -1,3 +1,3 @@
{ {
"version": "2025.2.5" "version": "2025.2.7"
} }