summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2008-03-26 19:44:46 +0100
committerOliver Tappe2008-03-26 19:44:46 +0100
commit826f91d87a2de24cf2c87f42a73b1c3dd1ddf0c8 (patch)
tree7b055d1de82b50486741c8b86abe3f9e7347ec18 /config-db
parentperl cosmetics and a shorter username entry for kdm, so the enter button isn'... (diff)
downloadcore-826f91d87a2de24cf2c87f42a73b1c3dd1ddf0c8.tar.gz
core-826f91d87a2de24cf2c87f42a73b1c3dd1ddf0c8.tar.xz
core-826f91d87a2de24cf2c87f42a73b1c3dd1ddf0c8.zip
* Deactivated DB-schema version 0.28, as it does not work with the current
implementation (it tries to access a table which is created in the next DB-schema version). git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1696 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rw-r--r--config-db/OpenSLX/DBSchema.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/config-db/OpenSLX/DBSchema.pm b/config-db/OpenSLX/DBSchema.pm
index 1195ddc1..911b0f42 100644
--- a/config-db/OpenSLX/DBSchema.pm
+++ b/config-db/OpenSLX/DBSchema.pm
@@ -700,7 +700,11 @@ sub _schemaUpgradeDBFrom
# correct effects of implementation error last time around that caused
# the default vendor-OS to not have any plugins at all - so we add
# the default plugins here:
- $metaDB->addInstalledPlugin(0, 'theme');
+# OLTA: deactivated for good since this does not work anymore with newer
+# implementations (as addInstalledPlugin requires the table
+# 'installed_plugin_attr', which is going to be created in db-schema
+# version 0.29 (see below)
+# $metaDB->addInstalledPlugin(0, 'theme');
return 1;
},