summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-02-11 15:51:46 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-02-11 15:51:46 +0100
commit7dc5c9eff211b6f36340c9c40d7460afeb60fc96 (patch)
treeb0b7e67208e726aa445c004e926e0d185712e1a1
parent18403d9720c7b3d26881bb6291bf6eb2a9df05d9 (diff)
un ->color oublié
Fichier oublié dans le patch précédent https://github.com/marienfressinaud/FreshRSS/issues/295
-rwxr-xr-xapp/Controllers/configureController.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php
index a5d99c508..c0665d241 100755
--- a/app/Controllers/configureController.php
+++ b/app/Controllers/configureController.php
@@ -29,7 +29,6 @@ class FreshRSS_configure_Controller extends Minz_ActionController {
$cat = new FreshRSS_Category ($name);
$values = array (
'name' => $cat->name (),
- 'color' => $cat->color ()
);
$catDAO->updateCategory ($ids[$key], $values);
} elseif ($ids[$key] != $defaultId) {
@@ -43,7 +42,6 @@ class FreshRSS_configure_Controller extends Minz_ActionController {
$values = array (
'id' => $cat->id (),
'name' => $cat->name (),
- 'color' => $cat->color ()
);
if ($catDAO->searchByName ($newCat) == false) {