Skip to content

Commit

Permalink
Declared JavaScript as the default scripting language using a meta de…
Browse files Browse the repository at this point in the history
…claration in <head>. Intrinsic events, such as onClick, no longer need to specify what language to use.

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@122 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
James Richards committed Mar 22, 2003
1 parent 8d4aee0 commit c3e1144
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion admin/printablesurvey.php
Expand Up @@ -44,7 +44,9 @@
header("Pragma: no-cache"); // HTTP/1.0
//Send ("Expires: " & Format$(Date - 30, "ddd, d mmm yyyy") & " " & Format$(Time, "hh:mm:ss") & " GMT ")
//echo $htmlheader;
echo "<html>\n<head></head>\n<body>\n";
echo "<html>\n<head>\n";
echo "<meta http-equiv='content-script-type' content='text/javascript' />\n";
echo "</head>\n<body>\n";

// PRESENT SURVEY DATAENTRY SCREEN

Expand Down

0 comments on commit c3e1144

Please sign in to comment.