Files
gallery3/modules/digibug/views/digibug_form.html.php
Bharat Mediratta 10e208ea5c 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"
2010-01-30 16:05:20 -08:00

14 lines
367 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
<body>
<?= form::open("http://www.digibug.com/dapi/order.php") ?>
<? foreach ($order_params as $key => $value): ?>
<?= form::hidden($key, $value) ?>
<? endforeach ?>
</form>
<script type="text/javascript">
document.forms[0].submit();
</script>
</body>
</html>