function BlogProfileAction($actionInfo, $request)
 {
     $this->SummaryAction($actionInfo, $request);
     // data validation
     $this->registerFieldValidator("blogId", new IntegerValidator());
     $view = new SummaryView("error");
     $view->setValue("message", $this->_locale->tr("error_incorrect_blog_id"));
     $this->setValidationErrorView($view);
 }