]> git.sur5r.net Git - contagged/blobdiff - smarty/plugins/modifier.csv.php
file hierachy reordering
[contagged] / smarty / plugins / modifier.csv.php
diff --git a/smarty/plugins/modifier.csv.php b/smarty/plugins/modifier.csv.php
deleted file mode 100644 (file)
index 4c715c4..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/**
- * Smarty plugin
- * @package Smarty
- * @subpackage plugins
- */
-
-
-/**
- * Smarty csv modifier plugin
- *
- * Type:     modifier<br>
- * Name:     csv<br>
- * Purpose:  format string for CSV output
- * @author Andreas Gohr <gohr@cosmocode.de>
- * @param string
- * @return string
- */
-function smarty_modifier_csv($string)
-{
-    return '"'.strtr(trim($string),'"','""').'"';
-}
-
-?>