Tuesday 12 June 2012

Adding the Location to the Venue information in Joomla Payroll Component

OPEN

components/com_projectfork/views/add_timesheet/view.html.php


Line 68 has been changed to the following

        //get venues
        $query = "SELECT id,title,location FROM #__pf_projects order by title ";
        $db->setQuery($query);
        $rows = $db->loadObjectList();





        foreach($rows as $row){
            $venues[$row->id] = $row->title.' - '.$row->location;
        }
        $this->assign('venues', $venues);
       


No comments: