diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 20:34:08 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 20:34:08 +0100 |
commit | b28f1a4a516f93044c632b254670dd21f52e625c (patch) | |
tree | aa2661016383e51fe26d564d208ac302f6e48926 /app/class/Controllerhome.php | |
parent | a30e115d62f10183acb7ff946821aaf066d4a61e (diff) | |
download | wcms-b28f1a4a516f93044c632b254670dd21f52e625c.tar.gz wcms-b28f1a4a516f93044c632b254670dd21f52e625c.zip |
new feature : colored tags
Diffstat (limited to 'app/class/Controllerhome.php')
-rw-r--r-- | app/class/Controllerhome.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/class/Controllerhome.php b/app/class/Controllerhome.php index 81e4300..9f8896c 100644 --- a/app/class/Controllerhome.php +++ b/app/class/Controllerhome.php @@ -30,8 +30,7 @@ class Controllerhome extends Controllerpage $table = $this->modelhome->getlister(); $this->opt = $this->modelhome->optinit($table); - $css = 'a.tag_bgg-fds_gd { background-color: #FF0021; } '; - $this->opt->parsetagcss($css); + $colors = new Colors($this->opt->taglist()); $table2 = $this->modelhome->table2($table, $this->opt); |