changeset 2782:f9c685144aeb

merge with beta
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 02 Sep 2012 23:09:00 +0200
parents dd222038535d (current diff) d03d51b6541e (diff)
children c85746b607bd
files rhodecode/lib/db_manage.py
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/lib/db_manage.py	Sun Sep 02 22:26:46 2012 +0200
+++ b/rhodecode/lib/db_manage.py	Sun Sep 02 23:09:00 2012 +0200
@@ -194,6 +194,14 @@
                 notify('re-checking permissions')
                 self.klass.create_permissions()
 
+                notify('installing new UI options')
+                sett4 = RhodeCodeSetting('show_public_icon', True)
+                Session().add(sett4)
+                sett5 = RhodeCodeSetting('show_private_icon', True)
+                Session().add(sett5)
+                sett6 = RhodeCodeSetting('stylify_metatags', False)
+                Session().add(sett6)
+
                 notify('fixing old PULL hook')
                 _pull = RhodeCodeUi.get_by_key('preoutgoing.pull_logger')
                 if _pull: