Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
fix installation of controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Nov 12, 2018
1 parent 3462408 commit 06dd5c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Installer/DemoInstaller.php
Expand Up @@ -56,9 +56,9 @@ public function installDemo()
INSERT INTO `documents` VALUES (3, 1, \'page\', \'fehler\', \'/\', 1, 1, 1503510199, 1505139888, 2, 2, 0);
DELETE FROM `documents_page` WHERE `id`=1 OR `id`=2 OR `id`=3;
INSERT INTO `documents_page` VALUES (1, NULL, \'@AppBundle\\Controller\\DefaultController\', \'default\', NULL, \'Startseite\', \'\', \'a:0:{}\', NULL, 0, \'\', 0);
INSERT INTO `documents_page` VALUES (2, NULL, \'@AppBundle\\Controller\\DefaultController\', \'imprint\', NULL, \'Impressum\', \'\', \'a:0:{}\', NULL, NULL, \'\', 0);
INSERT INTO `documents_page` VALUES (3, NULL, \'@AppBundle\\Controller\\ErrorController\', \'error\', NULL, \'Fehler\', \'\', \'a:0:{}\', NULL, NULL, \'\', 0);
INSERT INTO `documents_page` VALUES (1, NULL, \'@AppBundle\\\\Controller\\\\DefaultController\', \'default\', NULL, \'Startseite\', \'\', \'a:0:{}\', NULL, 0, \'\', 0);
INSERT INTO `documents_page` VALUES (2, NULL, \'@AppBundle\\\\Controller\\\\DefaultController\', \'imprint\', NULL, \'Impressum\', \'\', \'a:0:{}\', NULL, NULL, \'\', 0);
INSERT INTO `documents_page` VALUES (3, NULL, \'@AppBundle\\\\Controller\\\\ErrorController\', \'error\', NULL, \'Fehler\', \'\', \'a:0:{}\', NULL, NULL, \'\', 0);
-- Assets
DELETE FROM `assets` WHERE `id`=1;
Expand Down

0 comments on commit 06dd5c0

Please sign in to comment.