Beispiel #1
0
 public static function updateTopic(ForumTopic $t)
 {
     global $db;
     $db->query("\n\t\t\t\tUPDATE " . TABLE_TOPICS . "\n\t\t\t\tSET\n\t\t\t\t\ttopic_title = :title,\n\t\t\t\t\ttopic_important = :important,\n\t\t\t\t\ttopic_closed = :closed\n\t\t\t\tWHERE id = :tid\n\t\t\t", array($t->getTitle(), $t->isImportant() ? '1' : '0', $t->isClosed() ? '1' : '0', $t->getID()));
 }