Skip to content

Commit 02c97e2

Browse files
committed
Merge pull request civicrm#15 from colemanw/master
CRM-14106 - Replace CRM_Utils_Array::value with \!empty
2 parents 0de9c9c + 8fcf28a commit 02c97e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/civicrm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function civicrm_invoke() {
5656

5757
// add all the values from the itemId param
5858
// overrride the GET values if conflict
59-
if (CRM_Utils_Array::value('Itemid', $_REQUEST)) {
59+
if (!empty($_REQUEST['Itemid'])) {
6060
$component = JComponentHelper::getComponent('com_civicrm');
6161
$menu = JSite::getMenu();
6262
$params = $menu->getParams($_REQUEST['Itemid']);

0 commit comments

Comments
 (0)