diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-21 09:46:44 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-21 09:46:44 +0000 |
commit | 6f27d178ba01806015ad4f87cfa0b3648aaf24c9 (patch) | |
tree | 9ba493af37b873e28f874fac9d9875abbaf57127 /modules/system/system.install | |
parent | 01b4583a017c1a5d14f7d3d64864382081d16a59 (diff) | |
download | brdo-6f27d178ba01806015ad4f87cfa0b3648aaf24c9.tar.gz brdo-6f27d178ba01806015ad4f87cfa0b3648aaf24c9.tar.bz2 |
#194029 by pwolanin: fix trivial copy-paste error in filter format setup
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index ccaedbeec..6722d0613 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -345,7 +345,7 @@ function system_install() { // Line break filter. db_query("INSERT INTO {filters} (format, module, delta, weight) VALUES (%d, '%s', %d, %d)", 2, 'filter', 1, 1); // HTML corrector filter. - db_query("INSERT INTO {filters} (format, module, delta, weight) VALUES (%d, '%s', %d, %d)", 1, 'filter', 3, 10); + db_query("INSERT INTO {filters} (format, module, delta, weight) VALUES (%d, '%s', %d, %d)", 2, 'filter', 3, 10); db_query("INSERT INTO {variable} (name, value) VALUES ('%s','%s')", 'filter_html_1', 'i:1;'); |