aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-08-04 22:51:21 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-08-04 22:51:21 +0200
commit4ab58dcf6c833170c307de120698740fe0685efb (patch)
treee93da7bccfac43381be652d29e2e7f9dc43f1267
parent9e07dc982c92eb35ab82dffaab9c4a0b54ad7364 (diff)
downloadwallabag-4ab58dcf6c833170c307de120698740fe0685efb.tar.gz
wallabag-4ab58dcf6c833170c307de120698740fe0685efb.tar.zst
wallabag-4ab58dcf6c833170c307de120698740fe0685efb.zip
set material to default theme \o/
-rw-r--r--app/config/parameters.yml.dist2
-rw-r--r--src/Wallabag/CoreBundle/DataFixtures/ORM/LoadConfigData.php2
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php2
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist
index f80f65ad..97933ec3 100644
--- a/app/config/parameters.yml.dist
+++ b/app/config/parameters.yml.dist
@@ -40,7 +40,7 @@ parameters:
40 40
41 # default user config 41 # default user config
42 items_on_page: 12 42 items_on_page: 12
43 theme: baggy 43 theme: material
44 language: en_US 44 language: en_US
45 from_email: no-reply@wallabag.org 45 from_email: no-reply@wallabag.org
46 rss_limit: 50 46 rss_limit: 50
diff --git a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadConfigData.php b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadConfigData.php
index 900e151d..3bb5c5f2 100644
--- a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadConfigData.php
+++ b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadConfigData.php
@@ -15,7 +15,7 @@ class LoadConfigData extends AbstractFixture implements OrderedFixtureInterface
15 public function load(ObjectManager $manager) 15 public function load(ObjectManager $manager)
16 { 16 {
17 $adminConfig = new Config($this->getReference('admin-user')); 17 $adminConfig = new Config($this->getReference('admin-user'));
18 $adminConfig->setTheme('baggy'); 18 $adminConfig->setTheme('material');
19 $adminConfig->setItemsPerPage(30); 19 $adminConfig->setItemsPerPage(30);
20 $adminConfig->setLanguage('en_US'); 20 $adminConfig->setLanguage('en_US');
21 21
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
index f72cba65..5ab9c329 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
@@ -102,7 +102,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
102 return array( 102 return array(
103 array( 103 array(
104 array( 104 array(
105 'change_passwd[old_password]' => 'baggy', 105 'change_passwd[old_password]' => 'material',
106 'change_passwd[new_password][first]' => '', 106 'change_passwd[new_password][first]' => '',
107 'change_passwd[new_password][second]' => '', 107 'change_passwd[new_password][second]' => '',
108 ), 108 ),
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php
index e560ffdd..a51e836d 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php
@@ -69,7 +69,7 @@ class SecurityControllerTest extends WallabagCoreTestCase
69 $client = $parameters['client']; 69 $client = $parameters['client'];
70 70
71 $data = array( 71 $data = array(
72 'forgot_password[email]' => 'baggy', 72 'forgot_password[email]' => 'material',
73 ); 73 );
74 74
75 $client->submit($form, $data); 75 $client->submit($form, $data);