Skip to content

Commit 2725e10

Browse files
author
Donald A. Lobo
committed
fix more php5.3 notices
1 parent ad89e43 commit 2725e10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

admin/plugins/civicrm/civicrm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function onUserAfterDelete($user, $succes, $msg) {
8484
public function onUserLogin($user, $options = array()) {
8585
$app = JFactory::getApplication();
8686
if ( $app->isAdmin() ) {
87-
$jUser =& JFactory::getUser();
87+
$jUser = JFactory::getUser();
8888
$jId = $jUser->get('id');
8989
self::civicrmResetNavigation( $jId );
9090
}

admin/plugins/civicrmicon/civicrmicon.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function onGetIcons($context) {
5656
background-image:url("'.$img.'");
5757
}
5858
';
59-
$document =& JFactory::getDocument();
59+
$document = JFactory::getDocument();
6060
$document->addStyleDeclaration( $css );
6161
$icon[0]['image'] = 'civicrm';
6262
} else {

0 commit comments

Comments
 (0)