Merge pull request #22 from ss23/0.10

FIX Do not attempt to search non-existent classes
This commit is contained in:
Sean Harvey 2015-02-24 13:09:54 +13:00
commit f86eae35e1

View File

@ -1444,6 +1444,9 @@ class MSSQLDatabase extends SS_Database {
// Create one query per each table, $columns not used. We want just the ID and the ClassName of the object from this query.
foreach($tables as $tableName=>$columns){
// Don't bother trying to do things if the class doesn't actually exist
if (!class_exists($tableName)) continue;
$baseClass = ClassInfo::baseDataClass($tableName);
$join = $this->fullTextSearchMSSQL($tableName, $keywords);