Skip to content
Snippets Groups Projects
Commit 24042dfc authored by Demian Katz's avatar Demian Katz
Browse files

Updated dependencies.

parent a8cdc74a
Branches
Tags
No related merge requests found
......@@ -358,12 +358,12 @@
"source": {
"type": "git",
"url": "https://github.com/summon/Summon.php.git",
"reference": "40a47b759c81dd7db717c7b1ae457548f7a7290a"
"reference": "9ee5a4894d533384abf8d45ba15d60fdea9fcdd7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/summon/Summon.php/zipball/40a47b759c81dd7db717c7b1ae457548f7a7290a",
"reference": "40a47b759c81dd7db717c7b1ae457548f7a7290a",
"url": "https://api.github.com/repos/summon/Summon.php/zipball/9ee5a4894d533384abf8d45ba15d60fdea9fcdd7",
"reference": "9ee5a4894d533384abf8d45ba15d60fdea9fcdd7",
"shasum": ""
},
"type": "library",
......@@ -386,7 +386,7 @@
"source": "https://github.com/summon/Summon.php/tree/master",
"issues": "https://github.com/summon/Summon.php/issues"
},
"time": "2013-11-08 15:54:31"
"time": "2013-11-08 18:50:06"
},
{
"name": "symfony/yaml",
......
......@@ -4,4 +4,4 @@
require_once __DIR__ . '/composer' . '/autoload_real.php';
return ComposerAutoloaderInit605896a3d291a77b791906d44900b7c0::getLoader();
return ComposerAutoloaderInitd42a4545ebdc1034a9ebe02b5d98b7ff::getLoader();
......@@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit605896a3d291a77b791906d44900b7c0
class ComposerAutoloaderInitd42a4545ebdc1034a9ebe02b5d98b7ff
{
private static $loader;
......@@ -19,9 +19,9 @@ class ComposerAutoloaderInit605896a3d291a77b791906d44900b7c0
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit605896a3d291a77b791906d44900b7c0', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInitd42a4545ebdc1034a9ebe02b5d98b7ff', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit605896a3d291a77b791906d44900b7c0', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInitd42a4545ebdc1034a9ebe02b5d98b7ff', 'loadClassLoader'));
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
......
......@@ -652,15 +652,15 @@
"source": {
"type": "git",
"url": "https://github.com/summon/Summon.php.git",
"reference": "40a47b759c81dd7db717c7b1ae457548f7a7290a"
"reference": "9ee5a4894d533384abf8d45ba15d60fdea9fcdd7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/summon/Summon.php/zipball/40a47b759c81dd7db717c7b1ae457548f7a7290a",
"reference": "40a47b759c81dd7db717c7b1ae457548f7a7290a",
"url": "https://api.github.com/repos/summon/Summon.php/zipball/9ee5a4894d533384abf8d45ba15d60fdea9fcdd7",
"reference": "9ee5a4894d533384abf8d45ba15d60fdea9fcdd7",
"shasum": ""
},
"time": "2013-11-08 15:54:31",
"time": "2013-11-08 18:50:06",
"type": "library",
"installation-source": "source",
"autoload": {
......
......@@ -135,6 +135,12 @@ class SerialsSolutions_Summon_Query
*/
protected $idsToFetch = array();
/**
* Maximum topics to explore
* @var int
*/
protected $maxTopics = 1;
/**
* Constructor
*
......@@ -189,6 +195,9 @@ class SerialsSolutions_Summon_Query
if (!empty($this->filters)) {
$options['s.fvf'] = $this->filters;
}
if ($this->maxTopics !== false) {
$options['s.rec.topic.max'] = $this->maxTopics;
}
if (!empty($this->groupFilters)) {
$options['s.fvgf'] = $this->groupFilters;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment