We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Code bug in Videos Plugin | Forum

Purusothaman Ramanujam
 In teh viewList function of videos plugin (video.php), the below code is found. Here the video plugin redirects the user to the photos page, which is wrong.

       if ( !in_array($listType, $validLists) )
        {
            $this->redirect(OW::getRouter()->urlForRoute('view_photo_list', array('listType' => 'latest')));
        }

It should be
$this->redirect(OW::getRouter()->urlForRoute('view_list', array('listType' => 'latest')));
Purusothaman Ramanujam
This redirect will surely confuse the users. If photos plugin is not installed, it will lead to 404 error.
Alia Team
Alia Oct 8 '12
Thanks for reporting this issue. We will fix it.