if (!defined("IN_FUSION")) { header("Location:../../index.php"); exit; } // Check if locale file is available matching the current site locale setting. if (file_exists(INFUSIONS."usergallery_random_panel/locale/".$settings['locale'].".php")) { // Load the locale file matching the current site locale setting. include INFUSIONS."usergallery_random_panel/locale/".$settings['locale'].".php"; } else { // Load the infusion's default locale file. include INFUSIONS."usergallery_random_panel/locale/English.php"; } $result=dbquery ("select * FROM ".$db_prefix."userphotos ORDER BY RAND() LIMIT 1") ; openside($locale['700']); if (dbrows($result) == 1) { $data=dbarray($result); echo "
"; } else { echo $locale['701']; } closeside();