diff options
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index e041e273e..c9fd25de4 100644 --- a/include/zot.php +++ b/include/zot.php @@ -40,7 +40,7 @@ function zot_get_hubloc($arr,$primary = false) { $sql_extra = (($primary) ? " and hubloc_flags & " . intval(HUBLOC_FLAGS_PRIMARY) : "" ); $limit = (($primary) ? " limit 1 " : ""); - return q("select * from hubloc where hubloc_guid in ( $tmp ) $sql_extra order by hubloc_url $limit"); + return q("select * from hubloc where hubloc_hash in ( $tmp ) $sql_extra order by hubloc_url $limit"); } |