|
|
|
phpBB2 by Przemo
Support forów phpBB2 modified by Przemo
|
|
|
Moved by: lui 03-10-2009, 20:00 |
Usuwanie skracania (parsowania) linków |
| Author |
Message |
bartus2003
Helped: 2 times Posts: 91
|
Posted: 13-11-2007, 11:21 Usuwanie skracania (parsowania) linków
Forum address: http://forum.uliczne-wyscigi.pl/index.php |
|
|
Witam chciałbym zapytać jak usunąć to maskowanie linków z forum albo przynajmniej dać limit na 3 razy większy?
chodzi mi o to aby np link
| Code: | | http://dobreprogramy.pl/index.php?dz=2&id=2324&t=55 |
był wyświetlany w calosci a nie jako:
| Code: | | http://dobreprogramy....&id=2324&t=55 |
|
| Last edited by warna on 20-08-2010, 21:48; edited 2 times in total |
|
|
|
 |
@Centurion
commodore 69


Helped: 543 times Posts: 1982 Location: Gdańsk
|
Posted: 13-11-2007, 11:32
Forum address: http://www.sadistic.pl |
|
|
includes/bbcode.php
| Code: | function cut_links($str)
{
if ( strlen(strip_tags($str)) > 50 )
{
$str = str_replace('&', '&', $str);
return substr($str, 0, 25) . '...' . substr($str, -15);
}
else
{
return $str;
}
} |
jak nie chcesz skracania to daj
| Code: | function cut_links($str)
{
return $str;
} |
a jak chcesz zeby skracal, ale jeszcze dluzsze to zmien 50 na cos innego |
_________________ Poza forum pomagam tylko odpłatnie
• przenoszenie/łączenie/naprawianie baz danych
• instalacja/pisanie modów, aktualizacja for z zachowaniem modów
• programowanie php/mysql |
|
|
|
 |
bartus2003
Helped: 2 times Posts: 91
|
|
|
|
 |
mediumXx
is my life

Posts: 130 Location: Kwidzyn
|
|
|
|
 |
|
|
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 You cannot attach files in this forum You can download files in this forum
|
Add this topic to your bookmarks Printable version
|
Kopiowanie wszelkich treści zawartych na forum, modyfikacji oraz instrukcji bez zgody administracji i autorów tematów/postów zabronione!
Powered by phpBB modified by Przemo © 2003 phpBB Group | | Page generated in 0.09 second. SQL queries: 11 | |
 |
|