|
|
View previous topic
::
View next topic
|
Author |
Message |
ramon fincken Site's programmer
 Get a free globally recognized avatar It's free!
Joined: 03 Aug 2007 Posts: 412 Location: A'dam/Diemen, The Netherlands
|
Posted: Thu Dec 06, 2007 10:18 pm Post subject: phpbb2 create nice links from very long links (nice urls) |
|
|
Allright... how to tell phpbb that it should shorten the links so the layout keeps in tact?
Its fairly easy.
Code: | OPEN
includes/bbcode.php
FIND
# around line 643 in the function make_clickable($text)
return($ret);
}
BEFORE, ADD
$ret = preg_replace("/<a href=(.*?)>(.*?)<\/a>/ie", "(strlen(\"\\2\") > 55 && !eregi(\"<\", \"\\2\") ) ? '<a href='.stripslashes(\"\\1\").'>'.substr(\"\\2\", 0, 39) . '...' . substr(\"\\2\", -10).'</a>' : '<a href='.stripslashes(\"\\1\").'>'.\"\\2\".'</a>'", $ret); |
Example output:
http://www.ramonfincken.com/20/Lounge/A...moval.html |
|
Back to top |
|
 |
Google adsense Advertisement
|
Posted: Thu Dec 06, 2007 10:18 pm Post subject: phpbb2 create nice links from very long links (nice urls) |
|
|
Advertisement
|
|
Back to top |
|
 |
GravityForms Advertisement
|
Posted: Thu Dec 06, 2007 10:18 pm Post subject: phpbb2 create nice links from very long links (nice urls) |
|
|
Advertisement
 |
|
Back to top |
|
 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|