Details
-
Bug
-
Resolution: Fixed
-
Minor
-
2.3, 2.2.6
-
None
-
Unknown
-
Description
Currently we do:
this.permalinks = options.permalinks || true;
which is obviously always true !
The proper condition should be similar to
this.permalinks = (typeof options.permalinks == "undefined" || options.permalinks)