Commit 4db08087 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #1089 from kbanman/fix-query-lists

Fix Query::lists() for empty resultsets
parents 4a609815 e3a000af
......@@ -621,7 +621,7 @@ class Query {
// set the keys on the array of values using the array_combine
// function provided by PHP, which should give us the proper
// array form to return from the method.
if ( ! is_null($key))
if ( ! is_null($key) && count($results))
{
return array_combine(array_map(function($row) use ($key)
{
......
Markdown is supported
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