user profile page; account activation backend (without UI)
[living-lab-site.git] / application / controllers / video.php
index 019fa2c..755de1b 100644 (file)
@@ -31,18 +31,20 @@ class Video extends CI_Controller {
         */
        public function watch($id, $name = NULL, $plugin = NULL)
        {
-               $this->load->helper('url');
-               
                // **
                // ** LOADING MODEL
                // **
                // Retrieve video information.
                $this->load->model('videos_model');
+               $this->videos_model->inc_video_var($id, 'views');
                $data['video'] = $this->videos_model->get_video($id, $name);
+               $categories = $this->config->item('categories');
+               $data['video']['category_name'] = 
+                       $categories[ $data['video']['category_id'] ];
                $data['plugin_type'] = ($plugin === NULL ? 'auto' : $plugin);
                
                // Display page.
-               $params = array(        'title' => $data['video']['title'] . ' -- '
+               $params = array(        'title' => $data['video']['title'] . ' – '
                                                                . $this->config->item('site_name'),
                                                        'css' => array(
                                                                'jquery.ui.nsvideo.css',