Replaced all short tags
This commit is contained in:
		| @@ -88,12 +88,12 @@ case 'validate': | |||||||
| 		printHeader(); | 		printHeader(); | ||||||
| 		?> | 		?> | ||||||
|  |  | ||||||
| 		<form action='<?=$PHP_SELF?>' method=post> | 		<form action='<?php echo $PHP_SELF?>' method=post> | ||||||
| 		<input type=submit name=submit value='Go Back'> | 		<input type=submit name=submit value='Go Back'> | ||||||
| 		<font color=#ff0000><?=$er?></font> | 		<font color=#ff0000><?php echo $er?></font> | ||||||
| 		<br><input type=submit name=submit value='Go Back'> | 		<br><input type=submit name=submit value='Go Back'> | ||||||
| 		 | 		 | ||||||
| 		<? | 		<?php | ||||||
| 		print $hidden_fields; | 		print $hidden_fields; | ||||||
| 		print "</form>"; | 		print "</form>"; | ||||||
|  |  | ||||||
| @@ -122,7 +122,7 @@ case 'confirm': | |||||||
|     	</td> |     	</td> | ||||||
|  |  | ||||||
|     	<td> |     	<td> | ||||||
|     	<? |     	<?php | ||||||
| 	print htvar($common_name) . '<br>'; | 	print htvar($common_name) . '<br>'; | ||||||
|     	print htvar($email) . '<br>'; |     	print htvar($email) . '<br>'; | ||||||
|     	print htvar($organization) . '<br>'; |     	print htvar($organization) . '<br>'; | ||||||
| @@ -139,14 +139,14 @@ case 'confirm': | |||||||
|   	</tr></table> |   	</tr></table> | ||||||
|  |  | ||||||
| 	<h4>Are you sure?</h4> | 	<h4>Are you sure?</h4> | ||||||
| 	<p><form action='<?=$PHP_SELF?>' method=post> | 	<p><form action='<?php echo $PHP_SELF?>' method=post> | ||||||
| 	<?= $hidden_fields ?> | 	<?php echo  $hidden_fields ?> | ||||||
| 	<input type=hidden name=form_stage value=final> | 	<input type=hidden name=form_stage value=final> | ||||||
|   	<input type=submit name=submit value='Yes!  Create and Download' >  |   	<input type=submit name=submit value='Yes!  Create and Download' >  | ||||||
|   	<input type=submit name=submit value='Go Back'> |   	<input type=submit name=submit value='Go Back'> | ||||||
| 	</form> | 	</form> | ||||||
|  |  | ||||||
| 	<? | 	<?php | ||||||
| 	printFooter(); | 	printFooter(); | ||||||
|  |  | ||||||
| 	# Save user's defaults  | 	# Save user's defaults  | ||||||
| @@ -174,19 +174,19 @@ case 'final': | |||||||
| 	                	printHeader(); | 	                	printHeader(); | ||||||
|  |  | ||||||
| 				?> | 				?> | ||||||
| 				<form action=<?=$PHP_SELF?> method=post> | 				<form action=<?php echo $PHP_SELF?> method=post> | ||||||
|                 		<font color=#ff0000> |                 		<font color=#ff0000> | ||||||
|                 		<h2>There was an error creating your certificate.</h2></font><br> |                 		<h2>There was an error creating your certificate.</h2></font><br> | ||||||
| 	                	<blockquote> | 	                	<blockquote> | ||||||
| 	                	<h3>Debug Info:</h3> | 	                	<h3>Debug Info:</h3> | ||||||
| 				<pre><?=$errtxt?></pre> | 				<pre><?php echo $errtxt?></pre> | ||||||
| 				</blockquote> | 				</blockquote> | ||||||
| 				<p> | 				<p> | ||||||
| 				<?=$hidden_fields?> | 				<?php echo $hidden_fields?> | ||||||
| 				<input type=submit name=submit value=Back> | 				<input type=submit name=submit value=Back> | ||||||
| 				<p> | 				<p> | ||||||
| 				</form> | 				</form> | ||||||
| 				<? | 				<?php | ||||||
|  |  | ||||||
| 				printFooter(); | 				printFooter(); | ||||||
| 				break; | 				break; | ||||||
| @@ -231,51 +231,51 @@ default: | |||||||
| 	printHeader(); | 	printHeader(); | ||||||
| 	?> | 	?> | ||||||
| 	<body onLoad="self.focus();document.request.common_name.focus()"> | 	<body onLoad="self.focus();document.request.common_name.focus()"> | ||||||
| 	<form action="<?=$PHP_SELF?>" method=post name=request> | 	<form action="<?php echo $PHP_SELF?>" method=post name=request> | ||||||
| 	<table width=99%> | 	<table width=99%> | ||||||
| 	<th colspan=2><h3>Certificate Request Form</h3></th> | 	<th colspan=2><h3>Certificate Request Form</h3></th> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td width=30%>Common Name<br>(i.e. User real name or computer hostname) </td> | 	<td width=30%>Common Name<br>(i.e. User real name or computer hostname) </td> | ||||||
| 	<td><input type=text name=common_name value="<?= htvar($common_name)?>" size=50 maxlength=60></td> | 	<td><input type=text name=common_name value="<?php echo  htvar($common_name)?>" size=50 maxlength=60></td> | ||||||
| 	</tr> | 	</tr> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>E-mail Address </td> | 	<td>E-mail Address </td> | ||||||
| 	<td><input type=text name=email value="<?=htvar($email)?>" size=50 maxlength=60></td> | 	<td><input type=text name=email value="<?php echo htvar($email)?>" size=50 maxlength=60></td> | ||||||
| 	</tr> | 	</tr> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>Organization (Company/Agency)</td> | 	<td>Organization (Company/Agency)</td> | ||||||
| 	<td><input type=text name=organization value="<?=htvar($organization)?>" size=60 maxlength=60></td> | 	<td><input type=text name=organization value="<?php echo htvar($organization)?>" size=60 maxlength=60></td> | ||||||
| 	</tr> | 	</tr> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>Department/Unit </td><td><input type=text name=unit value="<?= htvar($unit) ?>" size=40 maxlength=60></td> | 	<td>Department/Unit </td><td><input type=text name=unit value="<?php echo  htvar($unit) ?>" size=40 maxlength=60></td> | ||||||
| 	</tr> | 	</tr> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>Locality (City/County)</td><td><input type=text name=locality value="<?= htvar($locality) ?>" size=30 maxlength=30></td> | 	<td>Locality (City/County)</td><td><input type=text name=locality value="<?php echo  htvar($locality) ?>" size=30 maxlength=30></td> | ||||||
| 	</tr> | 	</tr> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>State/Province</td><td><input type=text name=province value="<?= htvar($province) ?>" size=30 maxlength=30></td> | 	<td>State/Province</td><td><input type=text name=province value="<?php echo  htvar($province) ?>" size=30 maxlength=30></td> | ||||||
| 	</tr> | 	</tr> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>Country</td> | 	<td>Country</td> | ||||||
| 	<td><input type=text name=country value="<?= htvar($country) ?>" size=2 maxlength=2></td> | 	<td><input type=text name=country value="<?php echo  htvar($country) ?>" size=2 maxlength=2></td> | ||||||
| 	</tr> | 	</tr> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>Certificate Password </td> | 	<td>Certificate Password </td> | ||||||
| 	<td><input type=password name=passwd value="<?= htvar($passwd) ?>" size=30>   Again <input type=password name=passwdv  value="<?= htvar($passwdv) ?>" size=30></td> | 	<td><input type=password name=passwd value="<?php echo  htvar($passwd) ?>" size=30>   Again <input type=password name=passwdv  value="<?php echo  htvar($passwdv) ?>" size=30></td> | ||||||
| 	</tr> | 	</tr> | ||||||
|  |  | ||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>Certificate Life </td> | 	<td>Certificate Life </td> | ||||||
| 	<td><select name=expiry> | 	<td><select name=expiry> | ||||||
| 	<? | 	<?php | ||||||
|  |  | ||||||
| 	print "<option value=0.083 " . ($expiry == 1 ? "selected='selected'" : "") . " >1 Month</option>\n" ; | 	print "<option value=0.083 " . ($expiry == 1 ? "selected='selected'" : "") . " >1 Month</option>\n" ; | ||||||
| 	print "<option value=0.25 " . ($expiry == 1 ? "selected='selected'" : "") . " >3 Months</option>\n" ; | 	print "<option value=0.25 " . ($expiry == 1 ? "selected='selected'" : "") . " >3 Months</option>\n" ; | ||||||
| @@ -305,7 +305,7 @@ default: | |||||||
| 	<tr> | 	<tr> | ||||||
| 	<td>Certificate Use: </td> | 	<td>Certificate Use: </td> | ||||||
| 	<td><select name=cert_type> | 	<td><select name=cert_type> | ||||||
| 	<? | 	<?php | ||||||
| 	print '<option value="email" '.($cert_type=='email'?'selected':'').'>E-mail, SSL Client</option>'; | 	print '<option value="email" '.($cert_type=='email'?'selected':'').'>E-mail, SSL Client</option>'; | ||||||
| 	print '<option value="email_signing" '.($cert_type=='email_signing'?'selected':'').'>E-mail, SSL Client, Code Signing</option>'; | 	print '<option value="email_signing" '.($cert_type=='email_signing'?'selected':'').'>E-mail, SSL Client, Code Signing</option>'; | ||||||
| 	print '<option value="server" '.($cert_type=='server'?'selected':'').'>SSL Server</option>'; | 	print '<option value="server" '.($cert_type=='server'?'selected':'').'>SSL Server</option>'; | ||||||
| @@ -322,7 +322,7 @@ default: | |||||||
| 	</tr> | 	</tr> | ||||||
| 	</table> | 	</table> | ||||||
| 	</form> | 	</form> | ||||||
| 	<? | 	<?php | ||||||
|  |  | ||||||
| 	printFooter(); | 	printFooter(); | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Kyle Johnson
					Kyle Johnson