Skip to content

Commit

Permalink
Merge pull request #5841 from mbabker/userdebug
Browse files Browse the repository at this point in the history
The Debug Permissions Report don't work correct on Joomla 3.x (Fix #4117)

Thanks all :-)
  • Loading branch information
rdeutz committed Jan 21, 2015
2 parents 389377c + 93cc4ef commit 239d5cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion administrator/components/com_users/helpers/debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static function getDebugActions($component = null)
// Use default actions from configuration if no component selected or component doesn't have actions
if (empty($actions))
{
$filename = JPATH_ADMINISTRATOR . '/components/com_config/models/forms/application.xml';
$filename = JPATH_ADMINISTRATOR . '/components/com_config/model/form/application.xml';

if (is_file($filename))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@
</div>
</div>
<div class="clearfix"> </div>
<table class="table table-striped">
<table class="table table-striped table-condensed">
<thead>
<tr>
<th class="left">
<?php echo JHtml::_('grid.sort', 'COM_USERS_HEADING_ASSET_TITLE', 'a.title', $listDirn, $listOrder); ?>
</th>
<th class="nowrap left">
<th class="left">
<?php echo JHtml::_('grid.sort', 'COM_USERS_HEADING_ASSET_NAME', 'a.name', $listDirn, $listOrder); ?>
</th>
<?php foreach ($this->actions as $key => $action) : ?>
<th width="5%" class="nowrap center">
<th width="5%" class="center">
<span class="hasTooltip" title="<?php echo JHtml::tooltipText($key, $action[1]); ?>"><?php echo JText::_($key); ?></span>
</th>
<?php endforeach; ?>
<th width="5%" class="nowrap center">
<th width="5%" class="center">
<?php echo JHtml::_('grid.sort', 'COM_USERS_HEADING_LFT', 'a.lft', $listDirn, $listOrder); ?>
</th>
<th width="1%" class="nowrap center">
<th width="1%" class="center">
<?php echo JHtml::_('grid.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
</th>
</tr>
Expand Down

0 comments on commit 239d5cf

Please sign in to comment.