33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-12-23 03:19:00 +00:00

Fixes from last merge

This commit is contained in:
Michael Babker 2015-02-22 16:42:07 -05:00
parent 9831007ed1
commit e29d3c08bb
3 changed files with 6 additions and 5 deletions

View File

@ -12,7 +12,7 @@
\JHtml::_('behavior.modal');
\JHtml::_('formbehavior.chosen', 'select');
$this->document->addStyleSheet($this->baseurl.'/components/com_patchtester/assets/octicons/octicons.csss')
\JFactory::getDocument()->addStyleSheet(\JUri::base() . '/components/com_patchtester/assets/octicons/octicons.css');
$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn = $this->escape($this->state->get('list.direction'));

View File

@ -23,12 +23,12 @@ foreach ($this->items as $i => $item) :
<span class="hasTip" title="" data-original-title="<strong>Info</strong><br/><?php echo $item->description; ?>"><?php echo $this->escape($item->title); ?></span>
</td>
<td class="center">
<a class="btn btn-small btn-info" htref="<?php echo $item->html_url; ?>" target="_blank">
<a class="btn btn-small btn-info" href="<?php echo $item->pull_url; ?>" target="_blank">
<span class="octicon octicon-mark-github"></span> <?php echo \JText::_('COM_PATCHTESTER_GITHUB'); ?>
</a>
</td>
<td class="center">
<a class="btn btn-small btn-warning" htref="http://issues.joomla.org/tracker/joomla-cms/<?php echo $item->number; ?>" target="_blank">
<a class="btn btn-small btn-warning" href="http://issues.joomla.org/tracker/joomla-cms/<?php echo $item->pull_id; ?>" target="_blank">
<i class="icon-joomla"></i> <?php echo \JText::_('COM_PATCHTESTER_JISSUE'); ?>
</a>
</td>

View File

@ -36,6 +36,7 @@ COM_PATCHTESTER_NO_ITEMS="No data has been retrieved from GitHub, please click t
COM_PATCHTESTER_NOT_APPLIED="Not Applied"
COM_PATCHTESTER_GITHUB="GitHub"
COM_PATCHTESTER_JISSUE="J! Issue"
COM_PATCHTESTER_JISSUES="Issue Tracker"
COM_PATCHTESTER_REPO_IS_GONE="The patch could not be applied because the repository is missing"
COM_PATCHTESTER_REQUIREMENT_HTTPS="HTTPS wrappers must be enabled"
COM_PATCHTESTER_REQUIREMENT_OPENSSL="The OpenSSL extension must be installed and enabled in your php.ini"