diff options
author | friendica <info@friendica.com> | 2014-09-29 21:58:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-29 21:58:35 -0700 |
commit | 5292e3a100dd8da20865167e59f859a528676df7 (patch) | |
tree | ac5312f1c12f7cfeb0cab14d3dfda85c1f8965f5 /include/Contact.php | |
parent | 7c3b428e670ec3508f821a95568ba1248ce33616 (diff) | |
download | volse-hubzilla-5292e3a100dd8da20865167e59f859a528676df7.tar.gz volse-hubzilla-5292e3a100dd8da20865167e59f859a528676df7.tar.bz2 volse-hubzilla-5292e3a100dd8da20865167e59f859a528676df7.zip |
implement a "powered-by" but leave it turned off until somebody with a good eye for layout can figure out where best to put it.
Diffstat (limited to 'include/Contact.php')
-rw-r--r-- | include/Contact.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/Contact.php b/include/Contact.php index 8d50b1e5b..4440369dc 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -328,6 +328,19 @@ function mark_orphan_hubsxchans() { intval(HUBLOC_OFFLINE) ); +// $realm = get_directory_realm(); +// if($realm == DIRECTORY_REALM) { +// $r = q("select * from site where site_access != 0 and site_register !=0 and ( site_realm = '%s' or site_realm = '') order by rand()", +// dbesc($realm) +// ); +// } +// else { +// $r = q("select * from site where site_access != 0 and site_register !=0 and site_realm = '%s' order by rand()", +// dbesc($realm) +// ); +// } + + $r = q("select hubloc_id, hubloc_hash from hubloc where (hubloc_status & %d) and not (hubloc_flags & %d)", intval(HUBLOC_OFFLINE), intval(HUBLOC_FLAGS_ORPHANCHECK) |