2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Replaced the rest of the short tags with long ones

This commit is contained in:
Adam Zammit
2013-01-24 15:33:27 +11:00
parent ec5c6fa833
commit 28e0606088
56 changed files with 243 additions and 254 deletions

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Generate bulk appointments from a Headered CSV file
*
@@ -217,7 +217,7 @@ else if (isset($_POST['import_file']))
xhtml_head("queXS",true,array("../css/table.css"));
?>
<form action="" method="post">
<?
<?php
$tmpfname = tempnam(TEMPORARY_DIRECTORY, "FOO");
move_uploaded_file($_FILES['file']['tmp_name'],$tmpfname);
@@ -231,10 +231,10 @@ else if (isset($_POST['import_file']))
xhtml_table($todo,array(0,1,2,3),$todoh);
?>
<form action="" method="post">
<p><input type="hidden" name="tmpfname" value="<? echo $tmpfname; ?>" /></p>
<p><input type="submit" name="import_file" value="<? echo T_("Accept and generate bulk appointments"); ?>"/></p>
<p><input type="hidden" name="tmpfname" value="<?php echo $tmpfname; ?>" /></p>
<p><input type="submit" name="import_file" value="<?php echo T_("Accept and generate bulk appointments"); ?>"/></p>
</form>
<?
<?php
}
else
print "<p>" . T_("The file does not contain at least caseid, starttime and endtime columns. Please try again.") ."</p>";
@@ -258,11 +258,11 @@ else
</table></div>
<form enctype="multipart/form-data" action="" method="post">
<p><input type="hidden" name="MAX_FILE_SIZE" value="1000000000" /></p>
<p><? echo T_("Choose the CSV file to upload:"); ?><input name="file" type="file" /></p>
<p><input type="submit" name="import_file" value="<? echo T_("Load bulk appointment CSV"); ?>"/></p>
<p><?php echo T_("Choose the CSV file to upload:"); ?><input name="file" type="file" /></p>
<p><input type="submit" name="import_file" value="<?php echo T_("Load bulk appointment CSV"); ?>"/></p>
</form>
<?
<?php
xhtml_foot();
}