aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--boot.php2
-rw-r--r--mod/common.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index 4c9ee68ce..541703b99 100644
--- a/boot.php
+++ b/boot.php
@@ -1301,7 +1301,7 @@ function profile_load(&$a, $nickname, $profile = 0) {
if(! $user) {
logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
- notice( t('Requested account is not available.') . EOL );
+ notice( t('Requested channel is not available.') . EOL );
$a->error = 404;
return;
}
diff --git a/mod/common.php b/mod/common.php
index 87dd9e63a..f7b854922 100644
--- a/mod/common.php
+++ b/mod/common.php
@@ -14,7 +14,7 @@ function common_init(&$a) {
$x = q("select channel_address from channel where channel_id = %d limit 1",
intval($channel_id)
- };
+ );
if($x)
profile_load($a,$x[0]['channel_address'],0);