fix all the little typos from that huge change

This commit is contained in:
friendica 2012-09-25 18:00:21 -07:00
parent fbafd92f7f
commit 85f9d89a89
2 changed files with 2 additions and 2 deletions

View File

@ -599,7 +599,7 @@ if(! class_exists('App')) {
$this->channel = $channel; $this->channel = $channel;
} }
function get_channel() function get_channel() {
return $this->channel; return $this->channel;
} }

View File

@ -8,7 +8,7 @@ function home_init(&$a) {
$channel = $a->get_channel(); $channel = $a->get_channel();
if(local_user() && $channel && $channel['channel_address'])) if(local_user() && $channel && $channel['channel_address'])
goaway( $a->get_baseurl() . '/profile/' . $channel['channel_address']); goaway( $a->get_baseurl() . '/profile/' . $channel['channel_address']);
}} }}