Skip to content

Commit a7c2fd2

Browse files
authored
Fixes issue #20
1 parent 4d5cbbd commit a7c2fd2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

code/Forms.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ public static function saveBuilderSettings($info)
701701
$include_review_page = isset($info["include_review_page"]) ? "yes" : "no";
702702
$include_thanks_page_in_nav = isset($info["include_thanks_page_in_nav"]) ? "yes" : "no";
703703

704-
$offline_date = "";
704+
$offline_date = null;
705705
if (!empty($info["offline_date"]) && preg_match("/\d{2}\/\d{2}\/\d{4}\s\d{2}:\d{2}/", $info["offline_date"])) {
706706
list($date, $time) = explode(" ", $info["offline_date"]);
707707
list($month, $day, $year) = explode("/", $date);

0 commit comments

Comments
 (0)