BUG FIX – Admin options / WPML support
-
In order to support WPML and possibly other plugins, I noticed that the default admin options were being removed. In order to allow these plugins to work, I changed class-wp-job-manager-cpt.php, line 230 from:
$columns = array();to
if(!isset($columns)) { $columns = array(); }When $columns in passed into this method, it may already initialized. In WPML’s case, the array is already initialized. This prevents the array from being overwritten.
Please include this in your next release.
Cheers,
Mark
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘BUG FIX – Admin options / WPML support’ is closed to new replies.