Seite 1 von 1

Bräuchte hilfe beim Mod Post Notification ....

Verfasst: 23.08.2004 14:40
von Pabba
Hallo,

ich bekomme beim einfügen vom , user_notify_mod=$notifymod einen parse_error.

Das Problem ist ich hab kein Schimmer an welcher stelle das , user_notify_mod=$notifymod hinkommt ! :x

Code: Alles auswählen

# 
#-----[ OPEN ]------------------------------------------ 
# 
admin/admin_users.php
.
.
.
.

# 
#-----[ FIND ]------------------------------------------ 
# 
# BEWARE OF OTHER MODS!!
#
$sql = "UPDATE " . USERS_TABLE . "
    SET " . $username_sql . $passwd_sql . "user_email = '" . str_replace("\'", "''", $email) . "', user_icq = '" . str_replace("\'", "''", $icq) . "', user_website = '" . str_replace("\'", "''", $website) . "', user_occ = '" . str_replace("\'", "''", $occupation) . "', user_from = '" . str_replace("\'", "''", $location) . "', user_interests = '" . str_replace("\'", "''", $interests) . "', user_sig = '" . str_replace("\'", "''", $signature) . "', user_viewemail = $viewemail, user_aim = '" . str_replace("\'", "''", $aim) . "', user_yim = '" . str_replace("\'", "''", $yim) . "', user_msnm = '" . str_replace("\'", "''", $msn) . "', user_attachsig = $attachsig, user_sig_bbcode_uid = '$signature_bbcode_uid', user_allowsmile = $allowsmilies, user_allowhtml = $allowhtml, user_allowavatar = $user_allowavatar, user_allowbbcode = $allowbbcode, user_allow_viewonline = $allowviewonline, user_notify = $notifyreply, user_allow_pm = $user_allowpm, user_notify_pm = $notifypm, user_popup_pm = $popuppm, user_lang = '" . str_replace("\'", "''", $user_lang) . "', user_style = $user_style, user_timezone = $user_timezone, user_dateformat = '" . str_replace("\'", "''", $user_dateformat) . "', user_active = $user_status, user_rank = $user_rank" . $avatar_sql . "

# 
#-----[ IN-LINE FIND ]---------------------------------- 
# 
" . $avatar_sql . "        

# 
#-----[ IN-LINE BEFORE, ADD ]--------------------------- 
# 
, user_notify_mod=$notifymod 


Danke im voraus..

Pabba

Verfasst: 23.08.2004 14:43
von Leuchte
Suchen

Code: Alles auswählen

user_rank = $user_rank" . $avatar_sql . "
ersetzen mit

Code: Alles auswählen

user_rank = $user_rank, user_notify_mod = $notifymod" . $avatar_sql . "

Verfasst: 23.08.2004 14:44
von Pabba
Danke Leuchte,
da hätte ich noch lange rumgemacht !

Gruß

Pabba