CuteNews / cutenews-2.0

Cutenews 2.0 Repositary
Other
89 stars 35 forks source link

Fixed array initialization issue in category helper. Fixes #9 #14

Closed lightbringor closed 5 years ago

lightbringor commented 5 years ago

The array $nice in function cn_helper_category($e)was initialized with an empty string which caused an Error in PHP 7.1 and above. Changing this initialization to $nice = array(); fixes this issue.