From cd536731c33ea83eaf8f2b2ff4e4dcb1062feca5 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 25 May 2011 17:20:41 -0700 Subject: minor string update --- mod/dfrn_poll.php | 6 ++++++ mod/profiles.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'mod') diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index ef8469523..7d8568188 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -31,6 +31,12 @@ function dfrn_poll_init(&$a) { killme(); } + $r = q("SELECT `hidewall` FROM `profile` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid` WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 LIMIT 1", + dbesc($a->argv[1]) + ); + if(count($r) && $r[0]['hidewall']) + killme(); + logger('dfrn_poll: public feed request from ' . $_SERVER['REMOTE_ADDR'] ); header("Content-type: application/atom+xml"); $o = get_feed_for($a, '', $a->argv[1],$last_update); diff --git a/mod/profiles.php b/mod/profiles.php index b64c1294e..f0821a4f8 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -363,7 +363,7 @@ function profiles_content(&$a) { $opt_tpl = get_markup_template("profile-hide-wall.tpl"); $hide_wall = replace_macros($opt_tpl,array( - '$desc' => t('Hide your messages from unknown viewers of this profile?'), + '$desc' => t('Hide profile details and all your messages from unknown viewers?'), '$yes_str' => t('Yes'), '$no_str' => t('No'), '$yes_selected' => (($r[0]['hidewall']) ? " checked=\"checked\" " : ""), -- cgit v1.2.3