summaryrefslogtreecommitdiffstats
path: root/plugins/modifier.contact_info.php
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2018-11-19 12:10:49 +0100
committerAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2018-11-19 12:22:12 +0100
commitb4702736fc52780cb848d699d06e73ec3165290b (patch)
tree4a8217405149eee38217a54d5a05b08d3ae57093 /plugins/modifier.contact_info.php
parentec4c627649a0b31f804f9cbdbfc84d375b774cd2 (diff)
downloaddokuwiki-b4702736fc52780cb848d699d06e73ec3165290b.tar.gz
dokuwiki-b4702736fc52780cb848d699d06e73ec3165290b.tar.bz2
dokuwiki-b4702736fc52780cb848d699d06e73ec3165290b.zip
Update to new dokuwiki version, replace smarty with twig
Diffstat (limited to 'plugins/modifier.contact_info.php')
-rw-r--r--plugins/modifier.contact_info.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/modifier.contact_info.php b/plugins/modifier.contact_info.php
deleted file mode 100644
index 6537b7a..0000000
--- a/plugins/modifier.contact_info.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-
-function smarty_modifier_contact_info($value)
-{
- if (is_array($value)) {
- return '[[' . array_values($value)[0] . '|' . array_keys($value)[0] . ']]';
- }
-
- return '[[' . $value . '@spline.inf.fu-berlin.de' . '|' . $value . ']]';
-}
-
-?>