ソースを参照

MySQL use unhex instead of hex litteral

X' syntax did not work well with bind values
Alexandre Alapetite 9 年 前
コミット
9f04e2bf32
1 ファイル変更1 行追加1 行削除
  1. 1 1
      app/Models/EntryDAO.php

+ 1 - 1
app/Models/EntryDAO.php

@@ -11,7 +11,7 @@ class FreshRSS_EntryDAO extends Minz_ModelPdo implements FreshRSS_Searchable {
 	}
 
 	public function sqlHexDecode($x) {
-		return 'X' . $x;
+		return 'unhex(' . $x . ')';
 	}
 
 	public function sqlHexEncode($x) {