@hypokondriak
In vbdhome_fonctions.php
Around line 1219
Try replacing this
PHP Code:
$images = split ("<img src=\"", $postinfo[pagetext]);
$pagetext=$images[0];
foreach($images as $cle => $url) {
if ($cle!=0) {
if (!eregi("^http", $url)) {
$url=$vbdhome_config[forum_chemin]. "/" . $url;
}
$pagetext.= "<img src=\"" . $url;
}
}
$postinfo[pagetext]=$pagetext;
By this
PHP Code:
if ($images = split ("<img src=\"", $postinfo[pagetext])) {
$pagetext=$images[0];
foreach($images as $cle => $url) {
if ($cle!=0) {
if (!eregi("^http", $url)) {
$url=$vbdhome_config[forum_chemin]. "/" . $url;
}
$pagetext.= "<img src=\"" . $url;
}
}
$postinfo[pagetext]=$pagetext;
}
I don't understand why $postinfo[pagetext] is empty.
If it still doesn't work try replacing at line 1130
this :
By this
PHP Code:
p.pagetext as pagetext