Fix issue with database script and settings template

This commit is contained in:
Skylar Ittner 2018-12-22 21:47:13 -07:00
parent 2836a05f90
commit 2698fc794e
2 changed files with 2 additions and 1 deletions

View File

@ -26,4 +26,5 @@ DEFAULT CHARACTER SET = utf8;
ALTER TABLE `userloginkeys` ALTER TABLE `userloginkeys`
ADD COLUMN `appname` VARCHAR(255) NOT NULL AFTER `uid`; ADD COLUMN `appname` VARCHAR(255) NOT NULL AFTER `uid`;
ALTER TABLE `userloginkeys`
ADD COLUMN `appicon` TINYTEXT NULL DEFAULT NULL AFTER `appname`; ADD COLUMN `appicon` TINYTEXT NULL DEFAULT NULL AFTER `appname`;

View File

@ -41,7 +41,7 @@ $SETTINGS = [
"url" => "/accounthub", "url" => "/accounthub",
"mobileapi" => "/mobile/index.php", "mobileapi" => "/mobile/index.php",
"icon" => "/static/img/logo.svg", "icon" => "/static/img/logo.svg",
"title" => $SETTINGS['site_title'] "title" => "AccountHub"
], ],
"qwikclock" => [ "qwikclock" => [
"url" => "/qwikclock", "url" => "/qwikclock",