diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/display.php | 1 | ||||
-rw-r--r-- | mod/network.php | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/mod/display.php b/mod/display.php index dd880907e..b47346c4b 100644 --- a/mod/display.php +++ b/mod/display.php @@ -45,6 +45,7 @@ function display_content(&$a) { } } + $a->page_contact = $contact; $sql_extra = " AND `allow_cid` = '' diff --git a/mod/network.php b/mod/network.php index 29b852c07..1b5ea5d65 100644 --- a/mod/network.php +++ b/mod/network.php @@ -262,6 +262,9 @@ function network_content(&$a, $update = 0) { } } + // Set this so that the conversation function can find out contact info for our wall-wall items + $a->page_contact = $a->contact; + $mode = (($nouveau) ? 'network-new' : 'network'); require_once('include/conversation.php'); |