message icon frage wegen --> : "")

Probleme bei der regulären Arbeiten mit phpBB, Fragen zu Vorgehensweisen oder Funktionsweise sowie sonstige Fragen zu phpBB im Allgemeinen.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Antworten
Benutzeravatar
kain
Mitglied
Beiträge: 268
Registriert: 06.06.2002 14:23
Wohnort: darmstadt

message icon frage wegen --> : "")

Beitrag von kain »

ich habe ein problem und denke schon zu wissen wo der fehler liegt. ich habe den icon mod eingebaut in meinem 206er board und an einer stelle stimmt es nicht mit der einbauleitung überein.


#
#-----[ OPEN ]------------------------------------------
#

phpBB2/includes/functions_post.php

#
#-----[ FIND ]------------------------------------------
#

$sql = ( $mode != "editpost" ) ? "INSERT INTO " . TOPICS_TABLE . " (topic_title, topic_poster, topic_time, forum_id, topic_status, topic_type, topic_vote) VALUES ('$post_subject', " . $userdata['user_id'] . ", $current_time, $forum_id, " . TOPIC_UNLOCKED . ", $topic_type, $topic_vote )" : "UPDATE " . TOPICS_TABLE . " SET topic_title = '$post_subject', topic_type = $topic_type, topic_vote = $topic_vote WHERE topic_id = $topic_id";

#
#-----[ REPLACE WITH ]------------------------------------------
#

$sql = ( $mode != "editpost" ) ? "INSERT INTO " . TOPICS_TABLE . " (topic_title, topic_poster, topic_time, forum_id, topic_status, topic_type, topic_vote, topic_icon) VALUES ('$post_subject', " . $userdata['user_id'] . ", $current_time, $forum_id, " . TOPIC_UNLOCKED . ", $topic_type, $topic_vote, $msg_icon)" : "UPDATE " . TOPICS_TABLE . " SET topic_title = '$post_subject', topic_type = $topic_type, topic_vote = $topic_vote, topic_icon = $msg_icon WHERE topic_id = $topic_id";

#
#-----[ FIND ]------------------------------------------
#


die zeile ist aber so wie sie sein soll nicht dort zu finden sondern so:

... ? ", topic_vote = " . $topic_vote : "") . " WHERE topic_id = $topic_id";
und so soll man das rote einbauen:
..........topic_vote = $topic_vote, topic_icon = $msg_icon WHERE topic_id = $topic_id";

wie baue ich das nun ein? weil da ja noch : "") dabei steht :roll:
Kontrolle ist nur eine Illusion, denn niemand weiß was als nächstes passiert
Benutzeravatar
esperitox
Mitglied
Beiträge: 803
Registriert: 17.04.2002 21:40
Wohnort: Line 758
Kontaktdaten:

Beitrag von esperitox »

So:

Code: Alles auswählen

? ", topic_vote = " . $topic_vote : "") . ",  topic_icon = $msg_icon WHERE topic_id = $topic_id"; 
esperitox
Benutzeravatar
kain
Mitglied
Beiträge: 268
Registriert: 06.06.2002 14:23
Wohnort: darmstadt

Beitrag von kain »

hey danke.

es hat geklappt, geht alles nun.
Kontrolle ist nur eine Illusion, denn niemand weiß was als nächstes passiert
Antworten

Zurück zu „phpBB 2.0: Administration, Benutzung und Betrieb“