1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-06 13:16:54 +02:00

Site Url without trailing slashes #186

This commit is contained in:
Awilum
2014-01-06 19:17:23 +02:00
parent aa3d785b97
commit 51e2cd0a45
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ class BackupAdmin extends Backend
if (Security::check(Request::get('token'))) {
File::delete($backups_path . DS . Request::get('delete_file'));
Request::redirect(Option::get('siteurl').'admin/index.php?id=backup');
Request::redirect(Option::get('siteurl').'/admin/index.php?id=backup');
} else { die('Request was denied because it contained an invalid security token. Please refresh the page and try again.'); }
}