Removing luckily unused output-buffering trim helper

This commit is contained in:
Thomas Gelf 2014-03-17 16:26:52 +01:00
parent 5c3df3db15
commit 47eff0e365
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
<?php
class Zend_View_Helper_Trim extends Zend_View_Helper_Abstract
{
public function start()
{
ob_start("Zend_View_Helper_Trim::trimfunc");
}
public static function trimfunc($string)
{
return trim($string);
}
public function end()
{
ob_end_flush();
}
}