Code: Alles auswählen
# - Überlange URLs automatisch kürzen
#
#-----[ ÖFFNE ]-----
#
# includes/bbcode.php
#
#
#-----[ FINDE ]-----
#
// Remove our padding..
$ret = substr($ret, 1);
#
#-----[ DAVOR EINFÜGEN ]-----
#
// Start add - AutoShortURL MOD
$ret = preg_replace("/<a href=(.*?)>(.*?)<\/a>/ie", "(strlen(\"\\2\") > 65 && !eregi(\"<\", \"\\2\") ) ? '<a href='.stripslashes(\"\\1\").'>'.substr(\"\\2\", 0, 35) . '.....' . substr(\"\\2\", -25).'</a>' : '<a href='.stripslashes(\"\\1\").'>'.\"\\2\".'</a>'", $ret);
// End add - AutoShortURL MODAutor: Unbekannt