summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-09-04 22:36:43 +0200
committerhukl <contact@smyck.org>2009-09-04 22:36:43 +0200
commit5330e223cff7ec0c1110149da8924c95be38c5c2 (patch)
treef318eede519c362e2cc10d51e93422619157fc18 /config
parent96a928cdfd6854a168d6328bcf29096403e556db (diff)
fixed the aggregate tag parsing
Diffstat (limited to 'config')
-rw-r--r--config/initializers/globalize.rb0
-rw-r--r--config/initializers/xmlparser.rb6
2 files changed, 6 insertions, 0 deletions
diff --git a/config/initializers/globalize.rb b/config/initializers/globalize.rb
deleted file mode 100644
index e69de29..0000000
--- a/config/initializers/globalize.rb
+++ /dev/null
diff --git a/config/initializers/xmlparser.rb b/config/initializers/xmlparser.rb
new file mode 100644
index 0000000..ba8660a
--- /dev/null
+++ b/config/initializers/xmlparser.rb
@@ -0,0 +1,6 @@
1class XML::Node
2 def replace_with(other)
3 self.next = other
4 remove!
5 end
6end \ No newline at end of file