<?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.
*/
set_time_limit (240);
$Path = 'import';
$CurrentUser = getCurrentUser();
if ( $ImportGigs ) include('import/gigs.php');
if ( $ImportGuestbook ) include('import/guestbook.php');
if ( $ImportNews AND $Version==12) include('import/news.php');
if ( $ImportSetup ) include('import/setup.php');
if ( $ImportUser ) include('import/user.php');
function optimizeImportString ( $String )
{
//if (strpos ( $String, '-' )===0) $String = substr ( $String, 1 );
$String = str_replace("&","&",$String);
return $String;
}
?>