Bläddra i källkod

updated_at = now()

visuddhinanda 4 år sedan
förälder
incheckning
508b7c0588
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      public/app/admin/word_index_weight_refresh.php

+ 1 - 1
public/app/admin/word_index_weight_refresh.php

@@ -138,7 +138,7 @@ for ($i = $from; $i <= $to; $i++) {
             }
             # 将整段权重写入据库
             $dh_pali->beginTransaction();
-            $query = "UPDATE ".__TABLE_WORD__." set weight = ? where id=? ";
+            $query = "UPDATE ".__TABLE_WORD__." set weight = ? , updated_at = now() where id=? ";
             $stmt_weight = $dh_pali->prepare($query);
             foreach ($fetch as $key => $value) {
                 $stmt_weight->execute(array($value["weight"], $value["id"]));