diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/bb2diaspora.php | 2 | ||||
-rw-r--r-- | include/nav.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 0721d27f6..2331865ae 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -40,7 +40,7 @@ function scale_diaspora_images($s,$include_link = true) { $new_height = $ph->getHeight(); logger('scale_diaspora_image: ' . $new_width . 'w ' . $new_height . 'h' . 'match: ' . $mtch[0], LOGGER_DEBUG); $s = str_replace($mtch[0],'[img=' . $new_width . 'x' . $new_height. ']' . $mtch[1] . '[/img]' - . "\n" . ((! $include_link) + . "\n" . (($include_link) ? '[url=' . $mtch[1] . ']' . t('view full size') . '[/url]' . "\n" : ''),$s); logger('scale_diaspora_image: new string: ' . $s, LOGGER_DEBUG); diff --git a/include/nav.php b/include/nav.php index 62a8a6d11..f7165fd0d 100644 --- a/include/nav.php +++ b/include/nav.php @@ -147,7 +147,7 @@ function nav(&$a) { $banner = get_config('system','banner'); if($banner === false) - $banner .= '<a href="http://project.friendika.com"><img id="logo-img" src="images/friendika-32.png" alt="logo" /></a><span id="logo-text"><a href="http://project.friendika.com">Friendica</a></span>'; + $banner .= '<a href="http://friendica.com"><img id="logo-img" src="images/friendika-32.png" alt="logo" /></a><span id="logo-text"><a href="http://friendica.com">Friendica</a></span>'; $tpl = get_markup_template('nav.tpl'); |