소스 검색

Oubli variable inutile

Suite de
https://github.com/marienfressinaud/FreshRSS/commit/7e9263ff5c0f0f0593deb386aacf4043b43e70e2
Alexandre Alapetite 12 년 전
부모
커밋
fcc2e023ef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/controllers/entryController.php

+ 1 - 1
app/controllers/entryController.php

@@ -75,7 +75,7 @@ class entryController extends ActionController {
 		if ($id) {
 			$entryDAO = new EntryDAO ();
 			$values = array (
-				'is_favorite' => (bool)($is_fav = Request::param ('is_favorite')),
+				'is_favorite' => (bool)(Request::param ('is_favorite')),
 			);
 			$entryDAO->updateEntry ($id, $values);
 		}