Skip to content

Commit bf981c1

Browse files
committed
Fix broken data entry
The tool was broken, after selecting the city, and you could no longer continue. This was due to two commits: 7fdfc79 accidentally got rid of the $ishomeless variable, and then 11807c3 broke logic that depended on it. $ishomeless is finally GONE after this commit.
1 parent c1e4fc0 commit bf981c1

File tree

1 file changed

+30
-32
lines changed

1 file changed

+30
-32
lines changed

cl_infos.php

+30-32
Original file line numberDiff line numberDiff line change
@@ -683,38 +683,36 @@ function StateSelectionSubmission() {
683683
<hr class=\"org-hr\">
684684
</div><!-- ABOUT HOME HR --><div id=\"AboutHome\" style=\"opacity: 1; float:left; width: 100%;\">
685685
<div id=\"AboutHomeLabel\">";
686-
// if($ishomeless == "No") {
687-
// echo "
688-
// <h2 class=\"h2\" style=\"font-weight: normal; font-size: 20px;\">
689-
// About your home . . .
690-
// </h2>
691-
// </div>
692-
// </div>
693-
//
694-
// <div id=\"cl_beds\" name=\"Beds\" style=\"opacity: 1; float:left; width: 100%;\">
695-
// <label class=\"form-els\">Bedrooms</label><br>
696-
// <select id=\"bedrooms\" name=\"bedrooms\" onchange=\"ShowUtilRentMort()\">
697-
// <option selected id=\"item9_0_option\" value=\"\">
698-
// Choose one
699-
// </option>
700-
// <option id=\"item9_1_option\" value=\"Efficiency/Studio\">
701-
// Efficiency/Studio
702-
// </option>
703-
// <option id=\"item9_2_option\" value=\"1\">
704-
// 1
705-
// </option>
706-
// <option id=\"item9_3_option\" value=\"2\">
707-
// 2
708-
// </option>
709-
// <option id=\"item9_4_option\" value=\"3\">
710-
// 3
711-
// </option>
712-
// <option id=\"item9_5_option\" value=\"4\">
713-
// 4
714-
// </option>
715-
// </select><br><br>
716-
// </div>";
717-
// }
686+
echo "
687+
<h2 class=\"h2\" style=\"font-weight: normal; font-size: 20px;\">
688+
About your home . . .
689+
</h2>
690+
</div>
691+
</div>
692+
693+
<div id=\"cl_beds\" name=\"Beds\" style=\"opacity: 1; float:left; width: 100%;\">
694+
<label class=\"form-els\">Bedrooms</label><br>
695+
<select id=\"bedrooms\" name=\"bedrooms\" onchange=\"ShowUtilRentMort()\">
696+
<option selected id=\"item9_0_option\" value=\"\">
697+
Choose one
698+
</option>
699+
<option id=\"item9_1_option\" value=\"Efficiency/Studio\">
700+
Efficiency/Studio
701+
</option>
702+
<option id=\"item9_2_option\" value=\"1\">
703+
1
704+
</option>
705+
<option id=\"item9_3_option\" value=\"2\">
706+
2
707+
</option>
708+
<option id=\"item9_4_option\" value=\"3\">
709+
3
710+
</option>
711+
<option id=\"item9_5_option\" value=\"4\">
712+
4
713+
</option>
714+
</select><br><br>
715+
</div>";
718716
}
719717
?>
720718
<div id="cl_utilsmortrent" name="Utilities+Rent/Mort" style="opacity: 1; float:left; width: 100%;">

0 commit comments

Comments
 (0)