mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2025-04-01 12:31:51 +00:00
Fixes from last merge
This commit is contained in:
parent
9831007ed1
commit
e29d3c08bb
@ -12,7 +12,7 @@
|
|||||||
\JHtml::_('behavior.modal');
|
\JHtml::_('behavior.modal');
|
||||||
\JHtml::_('formbehavior.chosen', 'select');
|
\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'));
|
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||||
@ -91,7 +91,7 @@ else :
|
|||||||
</th>
|
</th>
|
||||||
<th width="8%" class="nowrap center">
|
<th width="8%" class="nowrap center">
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_JISSUES'); ?>
|
<?php echo \JText::_('COM_PATCHTESTER_JISSUES'); ?>
|
||||||
</th>
|
</th>
|
||||||
<th width="10%" class="nowrap center">
|
<th width="10%" class="nowrap center">
|
||||||
<?php echo \JText::_('JSTATUS'); ?>
|
<?php echo \JText::_('JSTATUS'); ?>
|
||||||
</th>
|
</th>
|
||||||
|
@ -23,15 +23,15 @@ 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>
|
<span class="hasTip" title="" data-original-title="<strong>Info</strong><br/><?php echo $item->description; ?>"><?php echo $this->escape($item->title); ?></span>
|
||||||
</td>
|
</td>
|
||||||
<td class="center">
|
<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'); ?>
|
<span class="octicon octicon-mark-github"></span> <?php echo \JText::_('COM_PATCHTESTER_GITHUB'); ?>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="center">
|
<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'); ?>
|
<i class="icon-joomla"></i> <?php echo \JText::_('COM_PATCHTESTER_JISSUE'); ?>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="center">
|
<td class="center">
|
||||||
<?php if ($item->applied) : ?>
|
<?php if ($item->applied) : ?>
|
||||||
<span class="label label-success">
|
<span class="label label-success">
|
||||||
|
@ -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_NOT_APPLIED="Not Applied"
|
||||||
COM_PATCHTESTER_GITHUB="GitHub"
|
COM_PATCHTESTER_GITHUB="GitHub"
|
||||||
COM_PATCHTESTER_JISSUE="J! Issue"
|
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_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_HTTPS="HTTPS wrappers must be enabled"
|
||||||
COM_PATCHTESTER_REQUIREMENT_OPENSSL="The OpenSSL extension must be installed and enabled in your php.ini"
|
COM_PATCHTESTER_REQUIREMENT_OPENSSL="The OpenSSL extension must be installed and enabled in your php.ini"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user