Author: mcantelon
Date: Fri Jan  6 14:03:59 2012
New Revision: 10589

Log:
Minor tweak so some import class methods can be run without having to 
instantiate an object.

Modified:
   trunk/lib/QubitFlatfileImport.class.php

Modified: trunk/lib/QubitFlatfileImport.class.php
==============================================================================
--- trunk/lib/QubitFlatfileImport.class.php     Fri Jan  6 13:56:30 2012        
(r10588)
+++ trunk/lib/QubitFlatfileImport.class.php     Fri Jan  6 14:03:59 2012        
(r10589)
@@ -369,7 +369,7 @@
   public function createOrFetchActor($name, $history = false)
   {
     $query = "SELECT * FROM actor_i18n WHERE authorized_form_of_name=?";
-    $statement = $this->sqlQuery($query, array($name));
+    $statement = QubitFlatfileImport::sqlQuery($query, array($name));
     $result = $statement->fetch(PDO::FETCH_OBJ);
     if ($result)
     {

-- 
You received this message because you are subscribed to the Google Groups 
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/qubit-commits?hl=en.

Reply via email to