Skip to content

Commit

Permalink
fix elseif should be else if -again
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Oct 9, 2012
1 parent d854cbc commit 8dce316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/Zend/ProgressBar/ZendForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function makeRequest(url)
if (httpRequest.overrideMimeType) {
httpRequest.overrideMimeType('text/xml');
}
} elseif (window.ActiveXObject) {
} else if (window.ActiveXObject) {
try {
httpRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
Expand Down

0 comments on commit 8dce316

Please sign in to comment.