Code: Alles auswählen
[phpBB Debug] PHP Notice: in file /search.php on line 814: Undefined index: post_description
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file /search.php on line 814: Undefined index: post_description
Code: Alles auswählen
// Post Description
$post_description = censor_text($row['post_description']);
// ----------------------------
Code: Alles auswählen
// Post Description
$post_description = censor_text($desc_row['post_description']);
// ----------------------------
Code: Alles auswählen
// Post Description
$sql = 'SELECT topic_id, post_description
FROM ' . POSTS_TABLE . "
WHERE topic_id = '$topic_id'";
$result = $db->sql_query($sql);
$desc_row = $db->sql_fetchrow($result);
//------------------------