Skip to content
Snippets Groups Projects
Commit 2d8f9c75 authored by lobo's avatar lobo
Browse files

fix notices

parent 8a178b42
No related branches found
No related tags found
No related merge requests found
......@@ -471,7 +471,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
jimport('joomla.application.component.helper');
jimport('joomla.database.table');
$JUserTable = &JTable::getInstance('User', 'JTable');
$JUserTable = JTable::getInstance('User', 'JTable');
$db = $JUserTable->getDbo();
$query = $db->getQuery(TRUE);
......@@ -526,7 +526,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
function setUserSession($data) {
list($userID, $ufID) = $data;
$user = new JUser( $ufID );
$session = &JFactory::getSession();
$session = JFactory::getSession();
$session->set('user', $user);
parent::setUserSession($data);
......
......@@ -51,6 +51,7 @@ class civicrm_cli {
// optional arguments
var $_site = 'localhost';
var $_user = NULL;
var $_password = NULL;
// all other arguments populate the parameters
// array that is passed to civicrm_api
......@@ -366,7 +367,7 @@ class civicrm_cli_csv_file extends civicrm_cli {
function convertLine($data) {
$params = array();
foreach ($this->header as $i => $field) {
//split any multiselect data, denoted with CRM_Core_DAO::VALUE_SEPARATOR
//split any multiselect data, denoted with CRM_Core_DAO::VALUE_SEPARATOR
if (strpos($data[$i], CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
$data[$i] = explode(CRM_Core_DAO::VALUE_SEPARATOR,$data[$i]);
$data[$i] = array_combine($data[$i], $data[$i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment