diff options
author | friendica <info@friendica.com> | 2012-03-14 21:20:20 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-14 21:20:20 -0700 |
commit | 110e8f29197e0824d555b82c05c31f36b87ab7ae (patch) | |
tree | 2c6c691aae709d41d1b198537d9679ec18290b4f /mod/notify.php | |
parent | f0a62d8908cef31982c1c2b24fc9dbc8b59b8bdb (diff) | |
download | volse-hubzilla-110e8f29197e0824d555b82c05c31f36b87ab7ae.tar.gz volse-hubzilla-110e8f29197e0824d555b82c05c31f36b87ab7ae.tar.bz2 volse-hubzilla-110e8f29197e0824d555b82c05c31f36b87ab7ae.zip |
basic ssl_policy for important modules
Diffstat (limited to 'mod/notify.php')
-rw-r--r-- | mod/notify.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/notify.php b/mod/notify.php index a572b1534..ae8273a1d 100644 --- a/mod/notify.php +++ b/mod/notify.php @@ -20,7 +20,7 @@ function notify_init(&$a) { goaway($r[0]['link']); } - goaway($a->get_baseurl()); + goaway($a->get_baseurl(true)); } if($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all' ) { @@ -51,7 +51,7 @@ function notify_content(&$a) { if (count($r) > 0) { foreach ($r as $it) { $notif_content .= replace_macros($not_tpl,array( - '$item_link' => $a->get_baseurl().'/notify/view/'. $it['id'], + '$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'], '$item_image' => $it['photo'], '$item_text' => strip_tags(bbcode($it['msg'])), '$item_when' => relative_date($it['date']) |