<?php
/*
CREATIVE COMMONS - Attribution-No Derivative Works 3.0 Germany:
- You may not alter, transform, or build upon this work.
- Dieses Werk darf nicht bearbeitet oder in anderer Weise verändert werden.
*/
//$REQUEST_URI = $SetupFrontendCalendarGigDetailsURL.'?GigID='.$GigID;
if (isset($_SERVER['REQUEST_URI'])) $REQUEST_URI=$_SERVER['REQUEST_URI'];
else $REQUEST_URI = '';
if ( $SetupFrontendCalendarGigDetailsURL=='' ) $URL = $REQUEST_URI;
else $URL = $SetupFrontendCalendarGigDetailsURL;
if ( ereg ( '\?', $URL ) ) $URL = $URL.'&';
else $URL = $URL.'?';
$URL = $URL.'GigID='.$GigID;
echo '<a href="'.$URL.'">'.$L_187.'</a>';
//echo '<form style="margin: 0; padding: 0; display: inline;" id="form'.$GigID.'" method="post" action="'.$URL.'">
// <p style="margin: 0; padding: 0; display: inline;">
// <input type="hidden" name="GigID" value="'.$GigID.'" />
// <a href="'.$URL.'" onclick="javascript:document.forms[\'form'.$GigID.'\'].submit()">'.$L_187.'</a>
// </p>
// </form>';
?>