diff options
author | Thomas Willingham <founder@kakste.com> | 2013-03-25 19:20:12 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-03-25 19:20:12 +0000 |
commit | fb8a0e06c48f974d7e6ef864992d7453b91cd640 (patch) | |
tree | 0f0b3004535c944099e7710d5731cbc46a3c8af1 /mod/display.php | |
parent | 23cd14329dcdc5b732a64bd7ba21123f24dd5cfd (diff) | |
download | volse-hubzilla-fb8a0e06c48f974d7e6ef864992d7453b91cd640.tar.gz volse-hubzilla-fb8a0e06c48f974d7e6ef864992d7453b91cd640.tar.bz2 volse-hubzilla-fb8a0e06c48f974d7e6ef864992d7453b91cd640.zip |
Updated build_query for mid
Diffstat (limited to 'mod/display.php')
-rw-r--r-- | mod/display.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/mod/display.php b/mod/display.php index d5feb1f54..170f800ac 100644 --- a/mod/display.php +++ b/mod/display.php @@ -23,11 +23,9 @@ function display_content(&$a, $update = 0, $load = false) { if(argc() > 1 && argv(1) !== 'load') $item_hash = argv(1); - // This should actually be mid, but it needs to be changed in build_query.tpl and in all the - // pages which call it - if($_REQUEST['uri']) - $item_hash = $_REQUEST['uri']; + if($_REQUEST['mid']) + $item_hash = $_REQUEST['mid']; if(! $item_hash) { @@ -85,7 +83,7 @@ function display_content(&$a, $update = 0, $load = false) { '$cats' => '', '$dend' => '', '$dbegin' => '', - '$uri' => $item_hash + '$mid' => $item_hash )); |