Removing luckily unused output-buffering trim helper
This commit is contained in:
parent
5c3df3db15
commit
47eff0e365
|
@ -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();
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue