- replaced <? with <?php for compatibility sake (see TODO and CODING_STANDARD to know more) - improved overall code lisibility
16 lines
195 B
PHP
16 lines
195 B
PHP
<?php
|
|
|
|
include("path.php");
|
|
include(BASE."include/"."incl.php");
|
|
include(BASE."include/"."vote.php");
|
|
|
|
redirectref();
|
|
|
|
apidb_header("Testing");
|
|
|
|
vote_update($HTTP_GET_VARS);
|
|
|
|
apidb_footer();
|
|
|
|
?>
|