Skip to content

Commit

Permalink
CAPS for params
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeutz committed Jan 10, 2017
1 parent f7c85a5 commit 0495886
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions administrator/components/com_contact/helpers/associations.php
Expand Up @@ -101,11 +101,11 @@ public function getItem($typeName, $id)
switch ($typeName)
{
case 'contact':
$table = JTable::getInstance('contact', 'ContactTable');
$table = JTable::getInstance('Contact', 'ContactTable');
break;

case 'category':
$table = JTable::getInstance('category');
$table = JTable::getInstance('Category');
break;
}

Expand Down
4 changes: 2 additions & 2 deletions administrator/components/com_content/helpers/associations.php
Expand Up @@ -99,11 +99,11 @@ public function getItem($typeName, $id)
switch ($typeName)
{
case 'article':
$table = JTable::getInstance('content');
$table = JTable::getInstance('Content');
break;

case 'category':
$table = JTable::getInstance('category');
$table = JTable::getInstance('Category');
break;
}

Expand Down
Expand Up @@ -105,7 +105,7 @@ public function getItem($typeName, $id)
break;

case 'category':
$table = JTable::getInstance('category');
$table = JTable::getInstance('Category');
break;
}

Expand Down

0 comments on commit 0495886

Please sign in to comment.