..the query is locatet only in my profile.php
search:
PHP Code:
$profilepic = $DB_site->query_first("
SELECT userid, dateline
FROM " . TABLE_PREFIX . "customprofilepic
WHERE userid = $bbuserinfo[userid]
");
replace it with:
PHP Code:
$profilepic = $DB_site->query_first("
SELECT userid, dateline, comment, visible
FROM " . TABLE_PREFIX . "customprofilepic
WHERE userid = $bbuserinfo[userid]
");
$profilepic['comment'] = fetch_censored_text($profilepic['comment']);
it's correct i don't have 'comment' in the user table
I thing i need a command for my User Table... INSERT INTO `User....only I do not know like
what can i do :nervous: