From 23cd14329dcdc5b732a64bd7ba21123f24dd5cfd Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 24 Mar 2013 19:51:23 -0700 Subject: fix mod_display breakage. --- mod/display.php | 11 +++++++++-- version.inc | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/mod/display.php b/mod/display.php index b1d376c41..d5feb1f54 100644 --- a/mod/display.php +++ b/mod/display.php @@ -3,6 +3,8 @@ function display_content(&$a, $update = 0, $load = false) { + logger("mod-display: update = $update load = $load"); + if(intval(get_config('system','block_public')) && (! local_user()) && (! remote_user())) { notice( t('Public access denied.') . EOL); return; @@ -20,8 +22,12 @@ function display_content(&$a, $update = 0, $load = false) { if(argc() > 1 && argv(1) !== 'load') $item_hash = argv(1); - if($_REQUEST['mid']) - $item_hash = $_REQUEST['mid']; + + // 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(! $item_hash) { @@ -143,6 +149,7 @@ function display_content(&$a, $update = 0, $load = false) { } + $o .= conversation($a,$items,'display', $update, 'client'); return $o; diff --git a/version.inc b/version.inc index 52f9b3c03..c64b92487 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-03-23.261 +2013-03-24.262 -- cgit v1.2.3