I have found 2 bugs :
- there is a "," missing in line 5 of standard.css after 14px before color.
In utils.inc.php the test :
if( $curr_category == '' || $curr_category >= $category_num )
Is incorrect :
if curr_category is 0 (that is if you select the first one) than $curr_category == '' is true, and than you revert to default_category which is not always the first one...
replaced by if (!is_int($cur_category) || ....
Btw in the config.inc.php the documentation speaks about ISO-xxxx but the correct values are iso-xxxx
goudal@enseirb.fr
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have found 2 bugs :
- there is a "," missing in line 5 of standard.css after 14px before color.
In utils.inc.php the test :
if( $curr_category == '' || $curr_category >= $category_num )
Is incorrect :
if curr_category is 0 (that is if you select the first one) than $curr_category == '' is true, and than you revert to default_category which is not always the first one...
replaced by if (!is_int($cur_category) || ....
Btw in the config.inc.php the documentation speaks about ISO-xxxx but the correct values are iso-xxxx
goudal@enseirb.fr