fix mod-display when not logged in.
This commit is contained in:
parent
5f84e3940d
commit
c0cc494bf3
@ -114,6 +114,9 @@ function del_config($family,$key) {
|
||||
function load_pconfig($uid,$family = '') {
|
||||
global $a;
|
||||
|
||||
if($uid === false)
|
||||
return false;
|
||||
|
||||
if(! array_key_exists($uid,$a->config))
|
||||
$a->config[$uid] = array();
|
||||
if(($family) && (! array_key_exists($family,$a->config[$uid])))
|
||||
@ -151,6 +154,9 @@ function get_pconfig($uid,$family, $key, $instore = false) {
|
||||
|
||||
global $a;
|
||||
|
||||
if($uid === false)
|
||||
return false;
|
||||
|
||||
if(! array_key_exists($uid,$a->config))
|
||||
load_pconfig($uid);
|
||||
|
||||
|
@ -59,7 +59,7 @@ function display_content(&$a, $update = 0, $load = false) {
|
||||
|
||||
|
||||
$o .= '<div id="live-display"></div>' . "\r\n";
|
||||
$o .= "<script> var profile_uid = " . intval(local_user())
|
||||
$o .= "<script> var profile_uid = " . ((intval(local_user())) ? local_user() : (-1))
|
||||
. "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
|
||||
|
||||
$a->page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array(
|
||||
@ -152,7 +152,7 @@ function display_content(&$a, $update = 0, $load = false) {
|
||||
|
||||
|
||||
|
||||
$o .= conversation($a,$items,'display', $update, 'client');
|
||||
$o .= conversation($a, $items, 'display', $update, 'client');
|
||||
|
||||
if($updateable) {
|
||||
$x = q("UPDATE item SET item_flags = ( item_flags ^ %d )
|
||||
|
@ -153,7 +153,7 @@ function search_content(&$a,$update = 0, $load = false) {
|
||||
// because browser prefetching might change it on us. We have to deliver it with the page.
|
||||
|
||||
$o .= '<div id="live-search"></div>' . "\r\n";
|
||||
$o .= "<script> var profile_uid = " . intval(local_user())
|
||||
$o .= "<script> var profile_uid = " . ((intval(local_user())) ? local_user() : (-1))
|
||||
. "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
|
||||
|
||||
$a->page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array(
|
||||
|
@ -1 +1 @@
|
||||
2013-06-17.347
|
||||
2013-06-18.348
|
||||
|
Reference in New Issue
Block a user