diff --git a/db/mysql/create_settings_table.sql b/db/mysql/create_settings_table.sql index 80a3931..080e272 100644 --- a/db/mysql/create_settings_table.sql +++ b/db/mysql/create_settings_table.sql @@ -1,4 +1,4 @@ CREATE table if not exists settings ( id integer primary key auto_increment, setting text not null, - value text not null) + value text null) diff --git a/db/sqlite/create_settings_table.sql b/db/sqlite/create_settings_table.sql index e0a9139..2b49457 100644 --- a/db/sqlite/create_settings_table.sql +++ b/db/sqlite/create_settings_table.sql @@ -1,4 +1,4 @@ CREATE table if not exists settings ( id integer primary key autoincrement, setting text not null, - value text not null) + value text null) diff --git a/footer.php b/footer.php index c65c708..1f0d882 100644 --- a/footer.php +++ b/footer.php @@ -11,21 +11,42 @@ } ?> - 0): ?> +