Author: garak
Date: 2010-02-22 13:23:34 +0100 (Mon, 22 Feb 2010)
New Revision: 28182
Modified:
plugins/sfSphinxPlugin/trunk/lib/sfSphinxClient.class.php
Log:
[sfSphinxPlugin] fixed wrong references to internal methods (closes #8182)
Modified: plugins/sfSphinxPlugin/trunk/lib/sfSphinxClient.class.php
===================================================================
--- plugins/sfSphinxPlugin/trunk/lib/sfSphinxClient.class.php 2010-02-22
11:55:05 UTC (rev 28181)
+++ plugins/sfSphinxPlugin/trunk/lib/sfSphinxClient.class.php 2010-02-22
12:23:34 UTC (rev 28182)
@@ -1083,11 +1083,11 @@
$req .= pack('N', count($filter['values']));
foreach ($filter['values'] as $value)
{
- $req .= sphPackI64($value);
+ $req .= $this->sphPackI64($value);
}
break;
case self::SPH_FILTER_RANGE:
- $req .= sphPackI64($filter['min']) . sphPackI64($filter['max']);
+ $req .= $this->sphPackI64($filter['min']) .
$this->sphPackI64($filter['max']);
break;
case self::SPH_FILTER_FLOATRANGE:
$req .= $this->packFloat($filter['min']) .
$this->packFloat($filter['max']);
@@ -1142,14 +1142,14 @@
$req .= pack('NN', $entry['type'], count($entry['values']));
foreach ($entry['values'] as $id => $val)
{
- $req .= sphPackU64($id);
+ $req .= $this->sphPackU64($id);
switch ($entry['type'])
{
case self::SPH_ATTR_FLOAT:
$req .= $this->PackFloat($val);
break;
case self::SPH_ATTR_BIGINT:
- $req .= sphPackI64($val);
+ $req .= $this->sphPackI64($val);
break;
default:
$req .= pack('N', $val);
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" 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/symfony-svn?hl=en.