Dosya : İndir
Kod: Tümünü seç
###############################################
## Hack Title: No images in quotes.
## Hack Version: 1.0.0
## Author: Antony Bailey
## Description: Replaces images in quotes with "Click here for picture".
## Compatibility: 2.0.0 - 2.0.5
##
## Installation Level: Easy
## Installation Time: 1 minute
## Files To Edit: 1
## posting.php
##
## History:
## 1.0.0: Initial release.
##
## Author Notes:
## FB-ke, says it won't work. Does though, he is silly this time.
##
## Support: http://www.phpbbhacks.com/forums
## Copyright: ©2003 No images in quotes 1.0.0 - Antony Bailey
##
###############################################
## You downloaded this hack from phpBBHacks.com, the #1 source for phpBB related downloads.
## Please visit http://www.phpbbhacks.com/forums for support.
###############################################
##
###############################################
## This hack is released under the GPL License.
## This hack can be freely used, but not distributed, without permission.
## Intellectual Property is retained by the hack author(s) listed above.
###############################################
#
#-----[ OPEN ]------------------------------------------
#
posting.php
#
#-----[ FIND ]------------------------------------------
#
$message = '[quote="' . $quote_username . '"]' . $message . '[/quote]';
#
#-----[ FIND ]------------------------------------------
#
{
$message = preg_replace("/(?<!;)(\[img\](.+?)\[\/img\])/s","[url=\\2]Resimi görmek için tıkla[/url]",$message);
}
#
#-----[ SAVE & CLOSE ALL FILES ]--------------------------
#
#End