From fcbfaec5f33e603fb187d0911e087793f0b21167 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Mon, 24 Mar 2014 18:23:12 +0100 Subject: [PATCH] Bug 990 : update of mono.sql add CSS Style --- contrib/mono-dossier/mono.sql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contrib/mono-dossier/mono.sql b/contrib/mono-dossier/mono.sql index 6ec4f93b0..fe4fef052 100644 --- a/contrib/mono-dossier/mono.sql +++ b/contrib/mono-dossier/mono.sql @@ -528,3 +528,11 @@ ALTER TABLE ONLY priv_user -- PostgreSQL database dump complete -- +begin; +update theme set the_name='Mandarine' ,the_filestyle='style-mandarine.css' where the_name='Colored'; +update theme set the_name='Mobile' ,the_filestyle='style-mobile.css' where the_name='EPad'; +update theme set the_name = 'Classique' where the_name='classic'; +update user_global_pref set parameter_value='Classique' where parameter_type='THEME'; +update theme set the_filestyle='style-classic.css' where the_filestyle='style.css'; +update repo_version set val=15; +commit;