Eng | Geo  
 








U.S. President George W. Bush on... video clip
Georgia's permanent representative to the U.N.... video clip
Russian Foreign Ministry official has accused... video clip

 13 May, 2008

  Comedy Show
Must-see comedy-variety show presents: unique hilarious sketches with amazing performances of your favourite show`s cast members and famous guests every Saturday at 22:30
  Club Show
New Club comedy show – analogue of the Russian Comedy Club. See every Sunday at 00:30 on Rustavi 2
  Good Morning, Georgia
is the best morning mood elevator to begin your day with
  Georgia - Modern History
The most interesting, dramatic and previously secreted episodes of Georgian history in Toma Chagelishvili's documentary series.


© 1994-2008 Rustavi 2 Broadcasting Company
Courier | Programs | Club | TV Guide | Service | About us | Adverticement | Contact us
You are visitor number:


TOP.GE
rtolower( $ibforums->input['act'] ); if (! isset($choice[ $ibforums->input['_low_act'] ][0]) ) { $ibforums->input['act'] = 'idx'; } //=========================================================================== // Short tags... //=========================================================================== if ( $ibforums->input['showforum'] != "" ) { $ibforums->input['act'] = "sf"; $ibforums->input['f'] = intval($ibforums->input['showforum']); } else if ( $ibforums->input['showtopic'] != "") { $ibforums->input['act'] = "st"; $ibforums->input['t'] = intval($ibforums->input['showtopic']); //--------------------------------------------------- // Grab and cache the topic now as we need the 'f' attr for // the skins... //--------------------------------------------------- $DB->simple_construct( array( 'select' => '*', 'from' => 'topics', 'where' => "tid=".$ibforums->input['t'], ) ); $DB->simple_exec(); $ibforums->topic_cache = $DB->fetch_row(); $ibforums->input['f'] = $ibforums->topic_cache['forum_id']; } else if ( $ibforums->input['showuser'] != "") { $ibforums->input['act'] = "profile"; $ibforums->input['MID'] = intval($ibforums->input['showuser']); } else if ( $ibforums->input['automodule'] != "" ) { $ibforums->input['act'] = 'module'; $ibforums->input['module'] = $ibforums->input['automodule']; } else { $ibforums->input['act'] = $ibforums->input['act'] == '' ? "idx" : $ibforums->input['act']; } //=========================================================================== // Get cache... //=========================================================================== $DB->simple_construct( array( 'select' => '*', 'from' => 'cache_store', 'where' => "cs_key IN ( ".$choice[ strtolower($ibforums->input['act']) ][2]."'banfilters', 'settings', 'group_cache', 'systemvars', 'skin_id_cache', 'forum_cache', 'moderators', 'stats', 'languages' )" ) ); $DB->simple_exec(); while ( $r = $DB->fetch_row() ) { if ( $r['cs_key'] == 'settings' ) { $tmp = unserialize( $std->txt_safeslashes($r['cs_value']) ); if ( is_array( $tmp ) and count( $tmp ) ) { foreach( $tmp as $k => $v ) { $ibforums->vars[ $k ] = stripslashes($v); } } unset( $tmp ); } else { if ( $r['cs_array'] ) { $ibforums->cache[ $r['cs_key'] ] = unserialize(stripslashes($r['cs_value'])); } else { $ibforums->cache[ $r['cs_key'] ] = $r['cs_value']; } } } if ( ! isset( $ibforums->cache['systemvars'] ) ) { $DB->simple_exec_query( array( 'delete' => 'cache_store', 'where' => "cs_key='systemvars'" ) ); $DB->do_insert( 'cache_store', array( 'cs_key' => 'systemvars', 'cs_value' => addslashes(serialize(array())), 'cs_array' => 1 ) ); } //-------------------------------- // Set up cache path //-------------------------------- if ( $ibforums->vars['ipb_cache_path'] ) { define( 'CACHE_PATH', $ibforums->vars['ipb_cache_path'] ); } else { define( 'CACHE_PATH', ROOT_PATH ); } //-------------------------------- // Set debug mode //-------------------------------- $DB->set_debug_mode( $ibforums->vars['sql_debug'] == 1 ? intval($_GET['debug']) : 0 ); //-------------------------------- // Initialize the FUNC //-------------------------------- $std->FUNC_init(); //-------------------------------- // The rest :D //-------------------------------- $ibforums->member = $sess->authorise(); $ibforums->lastclick = $sess->last_click; $ibforums->location = $sess->location; $ibforums->session_id = $sess->session_id; // Used in URLs $ibforums->my_session = $sess->session_id; // Used in code //-------------------------------- // Initialize the forums //-------------------------------- $forums->strip_invisible = 1; $forums->forums_init(); //-------------------------------- // Load the skin //-------------------------------- $std->load_skin(); list($ppu,$tpu) = explode( "&", $ibforums->member['view_prefs'] ); $ibforums->vars['display_max_topics'] = ($tpu > 0) ? $tpu : $ibforums->vars['display_max_topics']; $ibforums->vars['display_max_posts'] = ($ppu > 0) ? $ppu : $ibforums->vars['display_max_posts']; //=========================================================================== // Set up the session ID stuff //=========================================================================== if ( $ibforums->session_type == 'cookie' ) { $ibforums->session_id = ""; $ibforums->base_url = $ibforums->vars['board_url'].'/index.'.$ibforums->vars['php_ext'].'?'; } else { $ibforums->base_url = $ibforums->vars['board_url'].'/index.'.$ibforums->vars['php_ext'].'?s='.$ibforums->session_id.'&'; } $ibforums->js_base_url = $ibforums->vars['board_url'].'/index.'.$ibforums->vars['php_ext'].'?s='.$ibforums->session_id.'&'; //-------------------------------- // Set up the forum_read cookie //-------------------------------- $std->hdl_forum_read_cookie(); //=========================================================================== // Set up defaults //=========================================================================== $ibforums->skin_id = $ibforums->skin['_setid']; $ibforums->vars['img_url'] = 'style_images/' . $ibforums->skin['_imagedir']; $ibforums->vars['AVATARS_URL'] = 'style_avatars'; $ibforums->vars['EMOTICONS_URL'] = 'style_emoticons/<#EMO_DIR#>'; $ibforums->vars['mime_img'] = 'style_images/<#IMG_DIR#>'; //-------------------------------- // Set up our language choice //-------------------