Habe es gerade eingepatcht, aber beim
Aufruf von Skype übergibt phpBB [NAME]/ .
Kennt jemand das Problem ?
mfg chmee
**EDIT** Lösung: Das Slash muss weg.
usercp_viewprofile.php:
und viewtopic.php:
mfg chmee
Aufruf von Skype übergibt phpBB [NAME]/ .
Kennt jemand das Problem ?
mfg chmee
**EDIT** Lösung: Das Slash muss weg.
usercp_viewprofile.php:
PHP:
$skype_img = ( $profiledata['user_skype'] ) ? '<a href="skype:' . $profiledata['user_skype'] . '?call"><img src="http://mystatus.skype.com/smallclassic/' . $profiledata['user_skype'] . '" style="border: none;" alt="Call for free with Skype" /></a>' : '';
$skype = ( $profiledata['user_skype'] ) ? '<a href="skype:' . $profiledata['user_skype'] . '?call">' . $lang['SKYPE'] . '</a>' : '';
und viewtopic.php:
PHP:
$skype_img = ( $postrow[$i]['user_skype'] ) ? '<a href="skype:' . $postrow[$i]['user_skype'] . '?call"><img src="http://mystatus.skype.com/smallclassic/' . $postrow[$i]['user_skype'] . '" style="border: none;" alt="Call for free with Skype" /></a>' : '';
$skype = ( $postrow[$i]['user_skype'] ) ? '<a href="skype:' . $postrow[$i]['user_skype'] . '?call">' . $lang['SKYPE'] . '</a>' : '';
mfg chmee
Zuletzt bearbeitet: