diff --git a/core/model/fieldtypes/Varchar.php b/core/model/fieldtypes/Varchar.php index 3026d2bd1..7594fe66e 100644 --- a/core/model/fieldtypes/Varchar.php +++ b/core/model/fieldtypes/Varchar.php @@ -48,10 +48,6 @@ class Varchar extends DBField { return str_replace("\n", '\par ', $this->value); } - /*function forTemplate() { - return $this->raw2HTML(); - }*/ - function LimitCharacters($limit = 20, $add = "...") { $value = trim($this->value); return (strlen($value) > $limit) ? substr($value, 0, $limit) . $add : $value;