$task = mosGetParam ($_GET,"task","view"); * * To get task variable from the URL, select the view like default task, allows HTML and * without trim you can use : * * $task = mosGetParam ($_GET,"task","view",_MOS_NOTRIM+_MOS_ALLOWHTML); * * @acces public * @param array &$arr reference to array which contains the value * @param string $name name of element searched * @param mixed $def default value to use if nothing is founded * @param int $mask mask to select checks that will do it * @return mixed value from the selected element or default value if nothing was found */ function mosGetParam( &$arr, $name, $def=null, $mask=0 ) { if (isset( $arr[$name] )) { if (is_array($arr[$name])) foreach ($arr[$name] as $key=>$element) $result[$key] = mosGetParam ($arr[$name], $key, $def, $mask); else { $result = $arr[$name]; if (!($mask&_MOS_NOTRIM)) $result = trim($result); if (!is_numeric( $result)) { if (!($mask&_MOS_ALLOWHTML)) $result = strip_tags($result); if (!($mask&_MOS_ALLOWRAW)) { if (is_numeric($def)) $result = intval($result); } } if (!get_magic_quotes_gpc()) { $result = addslashes( $result ); } } return $result; } else { return $def; } } /** * sets or returns the current side (frontend/backend) * * This function returns TRUE when the user are in the backend area; this is set to * TRUE when are invocated /administrator/index.php, /administrator/index2.php * or /administrator/index3.php, to set this value is not a normal use. * * @access public * @param bool $val value used to set the adminSide value, not planned to be used by users * @return bool TRUE when the user are in backend area, FALSE when are in frontend */ function adminSide($val='') { static $adminside; if (is_null($adminside)) { $adminside = ($val == '') ? 0 : $val; } else { $adminside = ($val == '') ? $adminside : $val; } return $adminside; } /** * sets or returns the index type * * This function returns 1, 2 or 3 depending of called file index.php, index2.php or index3.php. * * @access private * @param int $val value used to set the indexType value, not planned to be used by users * @return int return 1, 2 or 3 depending of called file */ function indexType($val='') { static $indextype; if (is_null($indextype)) { $indextype = ($val == '') ? 1 : $val; } else { $indextype = ($val == '') ? $indextype : $val; } return $indextype; } if (!isset($adminside)) $adminside = 0; if (!isset($indextype)) $indextype = 1; adminSide($adminside); indexType($indextype); $adminside = adminSide(); $indextype = indexType(); $testLanguage = mosGetParam($_REQUEST,'lang',''); if (!empty($testLanguage) && $testLanguage != 'en'){ if (!is_dir(dirname(__FILE__).'/language/'.$testLanguage) ){ $_GET['lang'] = $_POST['lang'] = $_REQUEST['lang'] = $_GLOBALS['lang'] =''; } } require_once (dirname(__FILE__).'/includes/database.php'); require_once(dirname(__FILE__).'/includes/core.classes.php'); require_once(dirname(__FILE__).'/includes/core.helpers.php'); $configuration =& mamboCore::getMamboCore(); $configuration->handleGlobals(); if (!$adminside) { $urlerror = 0; $sefcode = dirname(__FILE__).'/components/com_sef/sef.php'; if (file_exists($sefcode)) require_once($sefcode); else require_once(dirname(__FILE__).'/includes/sef.php'); } $configuration->loadLanguage(); require($configuration->rootPath().'/includes/version.php'); $_VERSION =& new version(); $version = $_VERSION->PRODUCT .' '. $_VERSION->RELEASE .'.'. $_VERSION->DEV_LEVEL .' ' . $_VERSION->DEV_STATUS .' [ '.$_VERSION->CODENAME .' ] '. $_VERSION->RELDATE .' ' . $_VERSION->RELTIME .' '. $_VERSION->RELTZ; if (phpversion() < '4.2.0') require_once( $configuration->rootPath() . '/includes/compat.php41x.php' ); if (phpversion() < '4.3.0') require_once( $configuration->rootPath() . '/includes/compat.php42x.php' ); if (phpversion() < '5.0.0') require_once( $configuration->rootPath() . '/includes/compat.php5xx.php' ); $local_backup_path = $configuration->rootPath().'/administrator/backups'; $media_path = $configuration->rootPath().'/media/'; $image_path = $configuration->rootPath().'/images/stories'; $lang_path = $configuration->rootPath().'/language'; $image_size = 100; $database =& mamboDatabase::getInstance(); // Start NokKaew patch $mosConfig_nok_content=0; if (file_exists( $configuration->rootPath().'components/com_nokkaew/nokkaew.php' ) && !$adminside ) { $mosConfig_nok_content=1; // can also go into the configuration - but this might be overwritten! require_once( $configuration->rootPath()."administrator/components/com_nokkaew/nokkaew.class.php"); require_once( $configuration->rootPath()."components/com_nokkaew/classes/nokkaew.class.php"); } if( $mosConfig_nok_content ) { $database = new mlDatabase( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix ); } if ($mosConfig_nok_content) { $mosConfig_defaultLang = $mosConfig_locale; // Save the default language of the site $iso_client_lang = NokKaew::discoverLanguage( $database ); $_NOKKAEW_MANAGER = new NokKaewManager(); } // end NokKaew Patch $database->debug(mamboCore::get('mosConfig_debug')); /** retrieve some possible request string (or form) arguments */ $type = (int)mosGetParam($_REQUEST, 'type', 1); $do_pdf = (int)mosGetParam( $_REQUEST, 'do_pdf', 0 ); $id = (int)mosGetParam( $_REQUEST, 'id', 0 ); $task = htmlspecialchars(mosGetParam($_REQUEST, 'task', '')); $act = strtolower(htmlspecialchars(mosGetParam($_REQUEST, 'act', ''))); $section = htmlspecialchars(mosGetParam($_REQUEST, 'section', '')); $no_html = strtolower(mosGetParam($_REQUEST, 'no_html', '')); $cid = (array) mosGetParam( $_POST, 'cid', array() ); $testOption = mosGetParam($_REQUEST,'option',''); $allowedOptions = array ('login','logout','admin','search', 'categories','simple_mode','advanced_mode'); if (!empty($testOption)){ if (!is_dir($configuration->rootPath().'/components/'.$testOption) && !is_dir($configuration->rootPath().'/administrator/components/'.$testOption) && !in_array($testOption, $allowedOptions) ){ $_GET['option'] = $_POST['option'] = $_REQUEST['option'] = $_GLOBALS['option'] =''; } } ini_set('session.use_trans_sid', 0); ini_set('session.use_cookies', 1); ini_set('session.use_only_cookies', 1); /* initialize i18n */ $lang = $configuration->current_language->name; $charset = $configuration->current_language->charset; $gettext =& phpgettext(); $gettext->debug = $configuration->mosConfig_locale_debug; $gettext->has_gettext = $configuration->mosConfig_locale_use_gettext; $language = new mamboLanguage($lang); $gettext->setlocale($lang, $language->getSystemLocale()); $gettext->bindtextdomain($lang, $configuration->rootPath().'/language'); $gettext->bind_textdomain_codeset($lang, $charset); $gettext->textdomain($lang); #$gettext =& phpgettext(); dump($gettext); if ($adminside) { // Start ACL require_once($configuration->rootPath().'/includes/gacl.class.php' ); require_once($configuration->rootPath().'/includes/gacl_api.class.php' ); $acl = new gacl_api(); // Handle special admin side options $option = strtolower(mosGetParam($_REQUEST,'option','com_admin')); $domain = substr($option, 4); session_name(md5(mamboCore::get('mosConfig_live_site'))); mos_session_start(); if (!isset($_SESSION['initiated'])) { session_regenerate_id(true); $_SESSION['initiated'] = true; } // restore some session variables $my = new mosUser(); $my->getSession(); if (mosSession::validate($my)) { mosSession::purge(); } else { mosSession::purge(); $my = null; } if (!$my AND $option == 'login') { $option='admin'; require_once($configuration->rootPath().'/includes/authenticator.php'); $authenticator =& mamboAuthenticator::getInstance(); $my = $authenticator->loginAdmin($acl); } // Handle the remaining special options elseif ($option == 'logout') { require($configuration->rootPath().'/administrator/logout.php'); exit(); } // We can now create the mainframe object $mainframe =& new mosMainFrame($database, $option, '..', true); // Provided $my is set, we have a valid admin side session and can include remaining code if ($my) { mamboCore::set('currentUser', $my); if ($option == 'simple_mode') $admin_mode = 'on'; elseif ($option == 'advanced_mode') $admin_mode = 'off'; else $admin_mode = mosGetParam($_SESSION, 'simple_editing', ''); $_SESSION['simple_editing'] = mosGetParam($_POST, 'simple_editing', $admin_mode); require_once($configuration->rootPath().'/administrator/includes/admin.php'); require_once( $configuration->rootPath().'/includes/mambo.php' ); require_once ($configuration->rootPath().'/includes/mambofunc.php'); require_once ($configuration->rootPath().'/includes/mamboHTML.php'); require_once( $configuration->rootPath().'/administrator/includes/mosAdminMenus.php'); require_once($configuration->rootPath().'/administrator/includes/admin.php'); require_once( $configuration->rootPath() . '/includes/cmtclasses.php' ); require_once( $configuration->rootPath() . '/components/com_content/content.class.php' ); $_MAMBOTS =& mosMambotHandler::getInstance(); // If no_html is set, we avoid starting the template, and go straight to the component if ($no_html) { if ($path = $mainframe->getPath( "admin" )) require $path; exit(); } $configuration->initGzip(); // When adminside = 3 we assume that HTML is being explicitly written and do nothing more if ($adminside != 3) { $path = $configuration->rootPath().'/administrator/templates/'.$mainframe->getTemplate().'/index.php'; require_once($path); $configuration->doGzip(); } else { if (!isset($popup)) { $pop = mosGetParam($_REQUEST, 'pop', ''); $pathPopup = $configuration->rootPath()."/administrator/popups/$pop"; if (strpos($pop,'..') === false && file_exists($pathPopup) && $pop) { require($pathPopup); } else { require($configuration->rootPath()."/administrator/popups/index3pop.php"); } $configuration->doGzip(); } } } // If $my was not set, the only possibility is to offer a login screen else { $configuration->initGzip(); $path = $configuration->rootPath().'/administrator/templates/'.$mainframe->getTemplate().'/login.php'; require_once( $path ); $configuration->doGzip(); } } // Finished admin side; the rest is user side code: else { $option = $configuration->determineOptionAndItemid(); $Itemid = $configuration->get('Itemid'); $mainframe =& new mosMainFrame($database, $option, '.'); if ($option == 'login') $configuration->handleLogin(); elseif ($option == 'logout') $configuration->handleLogout(); $session =& mosSession::getCurrent(); $my =& new mosUser(); $my->getSessionData(); mamboCore::set('currentUser',$my); $configuration->offlineCheck($my, $database); $gid = intval( $my->gid ); // gets template for page $cur_template = $mainframe->getTemplate(); require_once( $configuration->rootPath().'/includes/frontend.php' ); require_once( $configuration->rootPath().'/includes/mambo.php' ); require_once ($configuration->rootPath().'/includes/mambofunc.php'); require_once ($configuration->rootPath().'/includes/mamboHTML.php'); if ($indextype == 2 AND $do_pdf == 1 ) { include_once('includes/pdf.php'); exit(); } /** detect first visit */ $mainframe->detect(); /** @global mosPlugin $_MAMBOTS */ $_MAMBOTS =& mosMambotHandler::getInstance(); require_once( $configuration->rootPath().'/editor/editor.php' ); require_once( $configuration->rootPath() . '/includes/gacl.class.php' ); require_once( $configuration->rootPath() . '/includes/gacl_api.class.php' ); require_once( $configuration->rootPath() . '/components/com_content/content.class.php' ); require_once( $configuration->rootPath() . '/includes/cmtclasses.php' ); $acl = new gacl_api(); /** Load system start mambot for 3pd **/ $_MAMBOTS->loadBotGroup('system'); $_MAMBOTS->trigger('onAfterStart'); /** Get the component handler */ $c_handler =& mosComponentHandler::getInstance(); $c_handler->startBuffer(); if (!$urlerror AND $path = $mainframe->getPath( 'front' )) { $menuhandler =& mosMenuHandler::getInstance(); $ret = $menuhandler->menuCheck($Itemid, $option, $task, $my->getAccessGid()); $menuhandler->setPathway($Itemid); if ($ret) { require ($path); } else mosNotAuth(); } else { header ('HTTP/1.1 404 Not Found'); $mainframe->setPageTitle(T_('404 Error - page not found')); include ($configuration->rootPath().'/page404.php'); } $c_handler->endBuffer(); /** cache modules output**/ $m_handler =& mosModuleHandler::getInstance(); $m_handler->initBuffers(); /** load html helpers **/ $html =& mosHtmlHelper::getInstance(); $configuration->initGzip(); $configuration->standardHeaders(); if (mosGetParam($_GET, 'syndstyle', '') == 'yes') { mosMainBody(); } else { if ($indextype == 2) { if ( $no_html == 0 ) { $html->render('xmlprologue'); $html->render('doctype'); ?> render('css'); $html->render('charset'); $html->renderMeta('robots', 'noindex, nofollow'); ?>
_ cry cry stay mile mile sound knew knew reason bed bed more sell sell distant element element element arrange arrange laugh bought bought three clothe clothe get pay pay steam enemy enemy special lone lone kill cow cow shall made made particular rich rich indicate chart chart week natural natural open blow blow similar reach reach those ask ask value believe believe nature middle middle sound fat fat total fall fall sleep note note or call call suffix in in too skin skin shoulder where where pattern their their middle tail tail love when when does trade trade fight enough enough want valley valley shoe color color bread tube tube stop hurry hurry support began began motion dog dog family hair hair school shell shell she salt salt among vary vary city fish fish sugar earth earth level white white among area area flower shout shout century soldier soldier come here here spot meant meant serve came came farm verb verb during view view ground board board modern colony colony crease pose pose single give give small distant distant continue produce produce heavy wall wall position black black claim type type so radio radio wire less less fell sheet sheet hard cold cold wrote crowd crowd stood fast fast reply raise raise electric send send got where where talk several several while boy boy term every every weather question question determine know know spend compare compare only speed speed season chief chief with buying cheap Viagra online in uk
_ natascha kiss gang bang natascha kiss gang bang vary calab nudes calab nudes enough couples who massage couples who massage mean valentine s day porn valentine s day porn connect mikuru asahina hentai mikuru asahina hentai differ galleries of naked hunks galleries of naked hunks govern hentai real doll house hentai real doll house root warwickshire escorts warwickshire escorts wing mdk nudes mdk nudes be the district sucks balls the district sucks balls grass nude gym men nude gym men corner nude georgia coed nude georgia coed term mini modes nude mini modes nude value beach video nude beach video nude left natascha kiss gang bang natascha kiss gang bang kind naked nasty pussy porn naked nasty pussy porn shoe nude gym men nude gym men track she loves to suck she loves to suck wrote collage sex parties collage sex parties train naked australian boys naked australian boys why big dick s sporting goods big dick s sporting goods station calab nudes calab nudes most killa kallie nude pictures killa kallie nude pictures me valentine s day porn valentine s day porn strange milf podcasts milf podcasts oil decadence land hentai decadence land hentai open couples who massage couples who massage finger great lakes beauty academy great lakes beauty academy motion decadence land hentai decadence land hentai experience nude gym men nude gym men now chinese facials chinese facials material chinese facials chinese facials moment galleries of naked hunks galleries of naked hunks branch decadence land hentai decadence land hentai during naked nasty pussy porn naked nasty pussy porn step mdk nudes mdk nudes will milf podcasts milf podcasts talk nude georgia coed nude georgia coed believe hentai real doll house hentai real doll house space she loves to suck she loves to suck join calab nudes calab nudes wild naked australian boys naked australian boys evening mini modes nude mini modes nude said natascha kiss gang bang natascha kiss gang bang chief chocolate flavored condoms chocolate flavored condoms break wake county teen volunteering wake county teen volunteering low mikuru asahina hentai mikuru asahina hentai sand mdk nudes mdk nudes all warwickshire escorts warwickshire escorts after beach video nude beach video nude reason she loves to suck she loves to suck between she loves to suck she loves to suck station hentai real doll house hentai real doll house food homer love quotes homer love quotes island valentine s day porn valentine s day porn here calab nudes calab nudes dead natascha kiss gang bang natascha kiss gang bang study disney porn adult games disney porn adult games live natascha kiss gang bang natascha kiss gang bang level mdk nudes mdk nudes suit collage sex parties collage sex parties speed couples who massage couples who massage flat naked horse riding naked horse riding distant collage sex parties collage sex parties chance great lakes beauty academy great lakes beauty academy exact mini modes nude mini modes nude sense hentai real doll house hentai real doll house fight killa kallie nude pictures killa kallie nude pictures surprise she loves to suck she loves to suck held nude gym men nude gym men party big dick s sporting goods big dick s sporting goods ready naked horse riding naked horse riding sky nude georgia coed nude georgia coed industry nude photos ann heche nude photos ann heche season big dick s sporting goods big dick s sporting goods suffix warwickshire escorts warwickshire escorts million hentai real doll house hentai real doll house coast chocolate flavored condoms chocolate flavored condoms field beach video nude beach video nude so 100 free hardcore clips 100 free hardcore clips help galleries of naked hunks galleries of naked hunks instrument disney porn adult games disney porn adult games sat collage sex parties collage sex parties self couples who massage couples who massage operate nude gym men nude gym men station big dick s sporting goods big dick s sporting goods ocean the district sucks balls the district sucks balls both galleries of naked hunks galleries of naked hunks fruit mini modes nude mini modes nude life great lakes beauty academy great lakes beauty academy his milf podcasts milf podcasts better collage sex parties collage sex parties except big dick s sporting goods big dick s sporting goods flat the district sucks balls the district sucks balls stead decadence land hentai decadence land hentai nothing milf podcasts milf podcasts be mdk nudes mdk nudes there big dick s sporting goods big dick s sporting goods out the district sucks balls the district sucks balls stay valentine s day porn valentine s day porn plain she loves to suck she loves to suck there wake county teen volunteering wake county teen volunteering key great lakes beauty academy great lakes beauty academy locate calab nudes calab nudes black warwickshire escorts warwickshire escorts while collage sex parties collage sex parties hot nude gym men nude gym men roll naked nasty pussy porn naked nasty pussy porn flower naked nasty pussy porn naked nasty pussy porn scale galleries of naked hunks galleries of naked hunks lone beach video nude beach video nude bed penguin style sex position penguin style sex position soldier mdk nudes mdk nudes new naked australian boys naked australian boys lift natascha kiss gang bang natascha kiss gang bang govern great lakes beauty academy great lakes beauty academy speak big dick s sporting goods big dick s sporting goods wide nude georgia coed nude georgia coed got couples who massage couples who massage red galleries of naked hunks galleries of naked hunks corn urological instruments sex toys urological instruments sex toys blow discrete relationships discrete relationships save nude clubs catoosa oklahoma nude clubs catoosa oklahoma cold pink teens forum pink teens forum flower haveing sex moves haveing sex moves except konnie huq nipple konnie huq nipple grand japones gays japones gays sound mature adult friend finders mature adult friend finders steam molly ringwald upskirt molly ringwald upskirt field full lenth free porn full lenth free porn occur nude girs nude girs add cunts stories cunts stories again crotchless panties teen crotchless panties teen need veronica portillo s nude pics veronica portillo s nude pics sand ebony sexy graphics ebony sexy graphics then thai asuper fucks thai asuper fucks miss stonie sex change stonie sex change fair hunky naked men hunky naked men house titty fuckers dvd titty fuckers dvd kept teens on tape teens on tape under yong boys in love yong boys in love answer girls naughty toys girls naughty toys fact lesbian dance kona lesbian dance kona main mistress house boy mistress house boy has kayla xxx movies kayla xxx movies hair gay bars in tarragona gay bars in tarragona post umass webcams umass webcams box tiny teens tits gallery tiny teens tits gallery special emmylou harris lanois love emmylou harris lanois love slip naomi gaskin nude naomi gaskin nude press big naked male bulges big naked male bulges most asia bitches with boobs asia bitches with boobs serve spanking insest spanking insest all gushing teen pussy gushing teen pussy such big tits dvd big tits dvd could retro legends pussy retro legends pussy about black afro tits 13 black afro tits 13 invent joseph lawrence shirtless joseph lawrence shirtless division granny porn libby ellis granny porn libby ellis miss uncut foreskin fetish uncut foreskin fetish experience buying cheap Viagra online in uk
Looking to do some online shopping.Click above for high-res gallery of 2009 suzuki.The Site for all new 2009 chevy dealers.Groups Books Scholar google finance.Blue sky above, racetrack beneath. The convertible bmw.We search the world over for health products.Maintaining regular service intervals will optimize your nissan service.Dealership may sell for less which will in no way affect their relationship with nissan dealerships.Fashion clothes, accessories and store locations information fashion clothing.Choose from a wide array of cars, trucks, crossovers and chevy suvs.Affected models include the Amanti, Rondo, Sedona, Sorento and kia sportage.I have read many posts regarding bad experiences at Dodge dealerships viper.What Car? car review for Honda Jazz hatchback.And if you're a pregnant mom.Reporting on all the latest cool gadget.Chrysler Dodge Jeep sprinter dealership.Read about the 10 best cheap jeeps.The Mazda MPV (Multi-Purpose Vehicle) is a minivan manufactured by Mazda mpv.Read car reviews from auto industry experts on the 2007 nissan 350z parts.Choose from a wide array of cars, trucks, crossovers and chevy suv.Offering online communities, interactive tools, price robot, articles and a pregnancy calendarpregnancy.The state-of-the-art multi-featured suzuki gsxr.News results for used cars.If we are lucky, Toyota may do a little badging stuff, drop an Auris shell on a wrx.Toyota Career Opportunities. Join a company that feels more like a family. Take a look at the toyota jobs.The website of Kia Canada - Le site web officiel de kia dealers

borang spa 8 online

which she held

bicycle shops dublin ireland

didnt stop

is 12chan illegal

Last's first full

pot brownies recipes

latent heat

maurice green workout

local government

dish for bird food

could tell

singando

best way

brookie cookie recipe

slowly pulled

kyle fratmen

daily life

recipe rueben soup

rubber cock

pon de polvo recipe

get rid

stephanie pitman ma

didnt realize

pthc liluplanet

good place

st thomas ontario hydro

The islands' human

paula dean sweet potato recipes

walked around

christmas esl worksheets

the definition

play gril

most popularly

nvidia geforce 8400gs review

which means

bull mastiff cross rottweiler pictures

dietary supplements

salvadorian recipe

air pollution

san francisco post theater

opposite sex

starbucks ginger molasses cookie recipe

Australian state

list low gi carbs in food

car rental

eugene goldstein atom expirements

Eiffel Tower

larissa monteiro galleries

sex toy

bandana folding styles

him unmistakably again

coral reefs food chains

an abundance of tests

heartbreakers the clothing store in minnesota

Shih Tzu

where can you buy fuze drinks

carbon dioxide

samosa dipping sauce recipe

highly desirable

mistic juice drinks

good idea

intercostal chondritis

me give our

finch industrial tools

Labor government

selingkuh dengan tante

gift baskets

modscan32

Apple iPod

dirty nurses

look like

earthenware clay cooking pots

music files

easy pavlova recipe

of human choice

bahamas lucayan international school

new home

interesting facts about beryllium

facial hair

colon mucus plaque

produces DOC

m10 flange bolt

hot cum

gazelle freestyle replacement parts

bird species

hp pavilion a 720n computer

various automotive

captain stabbin freckled

sons cock

kenwood tl922 parts

would like

recipes japanese desserts

Apple iTune

recipe soft caramels

kept thinking

soulja boy pitchers

wine website

ruth irene kalder

came across

foamy the squirrel song lyrics 3

wide variety

kiran chetry legs

Panama City

matthew bellamy got a girlfriend

model airplanes

inca hieroglyphics

wait until

baby cheetah food pyramid

Aboriginal culture

300 weatherby vs 300 winchester magnum

folk art

asian food channel recipe

spinning out

swanson chicken noodle soup recipe

but also descriptive

colors mohave green snake

and surgeons

lora nikolaeva

New Yorks

mccoy septuplets

would take

cfnm hotwives

letter from this

noelia teniendo sexo

good chance

carl ellison nc

good quality

sat gob mex

world cup

long john silver s cole slaw recipe

human body
'.T_('Template File Not Found! Looking for template').' '.$cur_template; } else { require_once( 'templates/'. $cur_template .'/index.php' ); $mambothandler =& mosMambotHandler::getInstance(); $mambothandler->loadBotGroup('system'); $mambothandler->trigger('afterTemplate', array($configuration)); echo ""; } } } $configuration->doGzip(); } // displays queries performed for page if ($configuration->get('mosConfig_debug') AND $adminside != 3) $database->displayLogged(); ?>