Index: branches/dev/data/class/SC_SelectSql.php
===================================================================
--- branches/dev/data/class/SC_SelectSql.php	(revision 12464)
+++ branches/dev/data/class/SC_SelectSql.php	(revision 12518)
@@ -196,4 +196,17 @@
 		}
 	}
+	
+	function setWhereOR($where){
+		if ($where != "") {		
+			if( $this->where ) {
+	
+				$this->where .= " OR " . $where;
+	
+			} else {
+	
+				$this->where = "WHERE " . $where;
+			}
+		}
+	}
 
 	function setOrder($order){
