- replaced <? with <?php for compatibility sake (see TODO and CODING_STANDARD to know more) - improved overall code lisibility
19 lines
262 B
PHP
19 lines
262 B
PHP
<?php
|
|
|
|
include("path.php");
|
|
include(BASE."include/"."incl.php");
|
|
include(BASE."include/"."rating.php");
|
|
|
|
// go back to where we came from
|
|
redirectref();
|
|
|
|
apidb_header("Update Rating");
|
|
|
|
apidb_session_start();
|
|
|
|
rating_update($HTTP_GET_VARS);
|
|
|
|
apidb_footer();
|
|
|
|
?>
|