Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
justinfreeman (Agileware)
Core
Commits
2d8f9c75
Commit
2d8f9c75
authored
11 years ago
by
lobo
Browse files
Options
Downloads
Patches
Plain Diff
fix notices
parent
8a178b42
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Utils/System/Joomla.php
+2
-2
2 additions, 2 deletions
CRM/Utils/System/Joomla.php
bin/cli.class.php
+2
-1
2 additions, 1 deletion
bin/cli.class.php
with
4 additions
and
3 deletions
CRM/Utils/System/Joomla.php
+
2
−
2
View file @
2d8f9c75
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
bin/cli.class.php
+
2
−
1
View file @
2d8f9c75
...
...
@@ -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
]);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment