From 77d35c45ab90aef054c06f4bc305a3a976df0f6f Mon Sep 17 00:00:00 2001 From: kevin_fourie Date: Tue, 22 Jan 2008 14:03:03 +0000 Subject: [PATCH] Merged in from DEV trunk... --- lib/foldermanagement/Folder.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/foldermanagement/Folder.inc b/lib/foldermanagement/Folder.inc index bd25867..5da346b 100644 --- a/lib/foldermanagement/Folder.inc +++ b/lib/foldermanagement/Folder.inc @@ -76,10 +76,10 @@ class Folder extends KTEntity { // }}} function getID() { return $this->iId; } - function getName() { return sanitizeForSQLtoHTML($this->sName); } - function setName($sNewValue) { $this->sName = sanitizeForSQL($sNewValue); } - function getDescription() { return sanitizeForSQLtoHTML($this->sDescription); } - function setDescription($sNewValue) { $this->sDescription = sanitizeForSQL($sNewValue); } + function getName() { return ($this->sName); } + function setName($sNewValue) { $this->sName = ($sNewValue); } + function getDescription() { return ($this->sDescription); } + function setDescription($sNewValue) { $this->sDescription = ($sNewValue); } function getParentID() { return $this->iParentID; } function setParentID($iNewValue) { $this->iParentID = $iNewValue; } function getCreatorID() { return $this->iCreatorID; } -- libgit2 0.21.4