diff options
author | Thomas Willingham <founder@kakste.com> | 2012-12-07 22:27:35 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2012-12-07 22:27:35 +0000 |
commit | 44263d5ac3e5189df28c92f58c2875137052b6ea (patch) | |
tree | 70aa75426f2b3c984faecdb5f684157bccedda3a /mod/chanview.php | |
parent | 555226ada4946b78be5fa2966f5c8532a997953f (diff) | |
parent | 2452b822f909a3cac432a76d8c928733a7683c6a (diff) | |
download | volse-hubzilla-44263d5ac3e5189df28c92f58c2875137052b6ea.tar.gz volse-hubzilla-44263d5ac3e5189df28c92f58c2875137052b6ea.tar.bz2 volse-hubzilla-44263d5ac3e5189df28c92f58c2875137052b6ea.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'mod/chanview.php')
-rw-r--r-- | mod/chanview.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/chanview.php b/mod/chanview.php index abc7fc216..42e5e1ed9 100644 --- a/mod/chanview.php +++ b/mod/chanview.php @@ -22,7 +22,11 @@ function chanview_content(&$a) { ); } elseif($_REQUEST['url']) { - $r = array(array('xchan_url' => $_REQUEST['url'])); + $r = q("select * from xchan where xchan_url = '%s' limit 1", + dbesc($_REQUEST['url']) + ); + if(! $r) + $r = array(array('xchan_url' => $_REQUEST['url'])); } if($r) { $xchan = $r[0]; |