diff --git a/README.md b/README.md index 0e585742d..6ee872e65 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,9 @@ In addition to the many folks who submit bug reports, a big thanks to the follow ## Changelog -3.2.0 - In Development, Jan 2015 -- Adds a new REST API as an alternative way to generate data. +3.2.0 - Jan 29, 2015 +- Adds a new REST API as an alternative way to generate data. See the [API Documentation](http://benkeen.github.io/generatedata/api.html) +for more information. 3.1.4 - Sept 6, 2014 - Chinese language file added, thanks to [Zhao Yang](https://github.com/jptiancai) diff --git a/plugins/exportTypes/HTML/HTML.class.php b/plugins/exportTypes/HTML/HTML.class.php index 03c24270b..dbf4b875e 100644 --- a/plugins/exportTypes/HTML/HTML.class.php +++ b/plugins/exportTypes/HTML/HTML.class.php @@ -36,8 +36,6 @@ public function generate($generator) { if ($format == "custom") { $template = $this->getCustomTemplate(); - error_log($template); - $content .= $this->genFormatCustom($data, $template); } else { diff --git a/resources/classes/Core.class.php b/resources/classes/Core.class.php index 804eb9da7..944c2bd52 100644 --- a/resources/classes/Core.class.php +++ b/resources/classes/Core.class.php @@ -34,8 +34,8 @@ class Core { private static $apiEnabled = false; // non-overridable settings - private static $version = "3.2.0 - dev"; - private static $releaseDate = "2015-01-15"; + private static $version = "3.2.0"; + private static $releaseDate = "2015-01-29"; private static $minimumPHPVersion = "5.3.0"; private static $minimumMySQLVersion = "4.1.3"; private static $settingsFileExists = false;