Fixes search token database reconstruction.
[platal.git] / bin / search.rebuild_db.php
index cd7e56c..5e43d31 100755 (executable)
  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
  ***************************************************************************/
 
-require('./connect.db.inc.php');
+require './connect.db.inc.php';
 
-ini_set('memory_limit', "16M");
+ini_set('memory_limit', '16M');
 $globals->debug = 0; // Do not store backtraces
 
 $res = XDB::iterRow('SELECT  pid
                        FROM  profiles');
 $i = 0;
 $n = $res->total();
-while ($pid = $res->next()->fetchOneCell()) {
-    Profile::rebuildSearchTokens($pid);
+while ($pid = $res->next()) {
+    Profile::rebuildSearchTokens(intval($pid[0]));
     printf("\r%u / %u",  ++$i, $n);
 }