//<--- INFO USER SESSION ACTIVE
		   $this->_view->infoSession  = $output->infoUser( $_SESSION['authenticated'] );
		   
		 $chars = mb_strlen( $this->_view->data->post_details, 'utf8' );
		 if( $chars > 45 ) {
		 	$post_details = _Function::cropString( $this->_view->data->post_details, 45 )." ";
		 } else if( $this->_view->data->post_details == '' ) {
		 	$post_details = null;
		 } else {
			 $post_details = $this->_view->data->post_details."";
		 }
		 
		 $this->_view->title = $_SESSION['LANG'][''].''.$post_details.stripslashes(  )."@".$this->_view->data->username."";