Fix #992: Digibug pops up a blank page and doesn't allow printing

form::hidden() changed in K24 breaking this.  Also fixed the spelling
of "$order_params"
This commit is contained in:
Bharat Mediratta
2010-01-30 16:05:20 -08:00
parent a161436015
commit 10e208ea5c
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -2,10 +2,12 @@
<html>
<body>
<?= form::open("http://www.digibug.com/dapi/order.php") ?>
<?= form::hidden($order_parms) ?>
<? foreach ($order_params as $key => $value): ?>
<?= form::hidden($key, $value) ?>
<? endforeach ?>
</form>
<script type="text/javascript">
document.forms[0].submit();
document.forms[0].submit();
</script>
</body>
</html>