Merge and improve pull-request #666 (custom stylesheet)

This commit is contained in:
Frederic Guillot
2015-03-16 22:12:16 -04:00
parent 32fb1f65c5
commit 50f98abfd3
5 changed files with 28 additions and 3 deletions

View File

@@ -6,7 +6,13 @@ use PDO;
use Core\Security;
use Model\Link;
const VERSION = 34;
const VERSION = 35;
function version_35($pdo)
{
$rq = $pdo->prepare('INSERT INTO settings VALUES (?, ?)');
$rq->execute(array('application_stylesheet', ''));
}
function version_34($pdo)
{