From 58125f97bb48e6f71bab7e4f9c9d2cb5c9e26182 Mon Sep 17 00:00:00 2001
From: Robert Sesek <rsesek@bluestatic.org>
Date: Wed, 13 Jun 2007 23:06:37 +0000
Subject: [PATCH] In Api.php, TYPE_NOCLEAN no longer exists as it was replaced
 with TYPE_NONE

---
 Api.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Api.php b/Api.php
index d193f71..8534638 100644
--- a/Api.php
+++ b/Api.php
@@ -503,7 +503,7 @@ abstract class BSApi
 	{
 		$type = $this->fields["$name"][F_TYPE];
 		
-		if ($type == TYPE_NOCLEAN OR $type == TYPE_STR OR $type == TYPE_STRUN)
+		if ($type == TYPE_NONE OR $type == TYPE_STR OR $type == TYPE_STRUN)
 		{
 			return "'" . BSRegister::GetType('Db')->escapeString($this->values["$name"]) . "'";
 		}
-- 
2.43.5