summaryrefslogtreecommitdiff
path: root/smarty_bit/block.textarea.php
diff options
context:
space:
mode:
authorNick Palmer <nick@sluggardy.net>2006-11-30 20:49:54 +0000
committerNick Palmer <nick@sluggardy.net>2006-11-30 20:49:54 +0000
commit556f2d613d72eb8c149b233675a0eb7ac4477057 (patch)
treecc652a1518db7e7d026c3cd846f9bf2edbdc41ad /smarty_bit/block.textarea.php
parent1fdb6a4df5d668f17b91e01152a823b6a21b188a (diff)
downloadkernel-556f2d613d72eb8c149b233675a0eb7ac4477057.tar.gz
kernel-556f2d613d72eb8c149b233675a0eb7ac4477057.tar.bz2
kernel-556f2d613d72eb8c149b233675a0eb7ac4477057.zip
Removed unrequired textarea plugin. Found a better way to hook FCKeditor.
Diffstat (limited to 'smarty_bit/block.textarea.php')
-rw-r--r--smarty_bit/block.textarea.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/smarty_bit/block.textarea.php b/smarty_bit/block.textarea.php
deleted file mode 100644
index 7fc93d0..0000000
--- a/smarty_bit/block.textarea.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
- /**
- * Smarty plugin
- * @package Smarty
- * @subpackage plugins
- */
-
- /**
- * Smarty block plugin
- * Requires PHP >= 4.3.0
- * -------------------------------------------------------------
- * Type: block
- * Name: textarea
- * Version: 1.0
- * Author: WaterDragon (nick at sluggardy dot net)
- * Purpose: Creates a textarea
- * -------------------------------------------------------------
- */
-function smarty_block_textarea($params, $content, &$smarty)
-{
- global $gBitSystem;
-
- if (isset($content)) {
- $out = '<textarea ';
-
- foreach ($params as $key => $value) {
- $out = $out . $key . '="' . $value . '" ';
- }
-
- $out = $out . ">" . $content . "</textarea>";
- }
-
- return $out;
-}