mirror of
https://github.com/zamentur/libreto.git
synced 2025-11-07 14:55:00 +05:30
8 lines
191 B
PHP
8 lines
191 B
PHP
<?php
|
|
// export
|
|
if(isset($_GET['export'])):
|
|
export();
|
|
// redirect to same page without url parameters
|
|
$url = strtok($_SERVER["REQUEST_URI"],'?');
|
|
header('Location: ' . $url );
|
|
endif;
|