diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-28 04:21:29 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-28 04:21:29 -0700 |
commit | dbeae16dc142c3bc832718b0c29eefd6a82033d6 (patch) | |
tree | 79307eaed3cf795f5adfc3677b0fa2685b048816 /include/externals.php | |
parent | edbcba6f113a5c8b709cdbfca892e845b5096ede (diff) | |
download | volse-hubzilla-dbeae16dc142c3bc832718b0c29eefd6a82033d6.tar.gz volse-hubzilla-dbeae16dc142c3bc832718b0c29eefd6a82033d6.tar.bz2 volse-hubzilla-dbeae16dc142c3bc832718b0c29eefd6a82033d6.zip |
add site_type to queries, first few - several more to go.
Diffstat (limited to 'include/externals.php')
-rw-r--r-- | include/externals.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/externals.php b/include/externals.php index 3b6d170d5..18c034bb2 100644 --- a/include/externals.php +++ b/include/externals.php @@ -28,9 +28,10 @@ function externals_run($argv, $argc){ } else { $randfunc = db_getfunc('RAND'); - $r = q("select site_url, site_pull from site where site_url != '%s' and site_flags != %d order by $randfunc limit 1", + $r = q("select site_url, site_pull from site where site_url != '%s' and site_flags != %d and site_type = %d order by $randfunc limit 1", dbesc(z_root()), - intval(DIRECTORY_MODE_STANDALONE) + intval(DIRECTORY_MODE_STANDALONE), + intval(SITE_TYPE_ZOT) ); if($r) $url = $r[0]['site_url']; |