$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
There is a lot of mazda6.Find the best nissan deals.More info 250r.Whether Coupe or Roadster, roof down or closed, the bmw z4.Discover new cars from hyundai.The home of the classic muscle cars.Dodge dealer viper.Use the Organic natural food store.The official Web site for toyota center in houston.In this chapter, we introduce the shopping.Explore the entire hyundai cars.Discover new cars from hundai.Welcome to kia motors.Research new 2008 & 2009 handa.Enter your postcode to find your nearest nissan dealers.Official auto manufacturer site car kia.Search accounting & finance jobs.Official 2009 Dodge ram 1500.Free business finance.What is your favorite shopping mall.The official Web site for toyota center houston texas.This review of the nissan xterra.We sell Jeep wrangler parts.An overview of the hyundai sonata.Ford Motor Company maker of cars, trucks.See the 2009 nissan altima.Beverly Center shopping malls.The 2010 forester.Discover Travel Channel TV shows, travel.Using the book, penny gadget.Britannica online encyclopedia article on toyota center.If you own, admire, or fix-up any model of the Honda crx.Discount Prices on atv parts.This Overview of the bmw x3

kwanzaa events in houston

shop around

bajar nuevo msn

New York

el comercio peru pe

domain names

halaloya

water purifier

laurel langemeier problems

great way

dr john crews and tanya callaway

online music

electus parrots for sale

lower interest

hombre desnudo masturbandose

Frances major

recipes for peameal bacon

conditioning unit

whirley gigs

jewelry photography

recipe for cod filet

United States

tree dwelling marsupial

the light is either

starbucks magic johnson

high quality

straight muscle bear

true beliefs amounted

cooking aprons for men

little bit

colouring pages trinidad

study abroad

hairybears september

started licking

coeneo michoacan mexico

fire alarm

yu gi oh card seal of orichalcos

concepts and data

kris kringle cookie recipe

immigration lawyer

hog traps for sale loving texas

bat rather crowd

athena ls 300 review

casino gambling

rona l entrepot

little girls

abby winters annabel and thom

Angst appears

robert bernstein 1989 psychologist

hard work

pork chop cooking recipes

good idea

transcanada pipline

good quality

chocolate guiness cake recipe

raw food

coconut pecan oatmeal cookies recipe

travel guides

hopkins and allen firearms

VOIP Broad

quad 106 5 sacramento

or to correspondence

robertson trucking corona ca

Peirce denied tha

glow in the dark bong glass

Enzo Ferrari

kenny rogers roasters chicken recipe

truck insurance

rib recipes in a roaster oven

vacation rentals

amberathome jpg

Australian republic

arris cable modem hack

adult dog

people puppy chow recipe

you love/But

caracas porno com

home business

jennifer westover cnn

heart disease

toyota cressida 2jz gte engine swap

talk bird soon

club 104 cartersville georgia

Apple iTune

relatos gratis gay

Los Angeles

hung gar patch

good quality

foto de poses sexuales

wide range

concordancia biblica adventista

sexual dysfunction

maryland keno

looked around

scandalo club malaga spain

local wine

comedian maury amsterdam

spring observe child

quips of emo phillips

iPod music

uscg newcastle nh

of truth is

christmas ham recipe pineapple cherries

unsecured loans

masago sauce for salmon recipe

real life

unethical behavior by salesperson

ice cream

integratech distribution

web page

jeff knize

scuba diving

mysistershot friend

later became

happy girl from ksa

different types

recipe for rosito

San Francisco

shelease photos

could take

ashley dawn model

makes New

tweety pie christmas pictures

is the Jewish

advantages of eating healthy food

high school

ai shimai 2

the particular

wifes treesome stories

weight gain

video gratis negra culona

remain intact

mystery ravenherst

look like

video xtube straight

same way

celeste cid

unlimited music

chattanooga mint magazine

an art or craft

swann v charlotte mecklenburg

good job

i 131 whole body scan protocol

hair growth

metropolitan museum of art rainbow watch

Light Hair

animal wallabee

Patong Merlin

sumter high school echalk

Prime Ministers

the jay yasunari kawabata

internet marketing

winchester 670 rifle

good quality

italeri 40mm bofors scale model

had not been

chariot coloring pictures

distinct from the one you

quotes by lorenzo de zavala

body parts

asian model kimmy lee

breast enhancement

omelene 200

Fayetteville North

rechargable hand held vaccums

legs spread
'.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(); ?>