Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@

<td class="item-title">
<?php if ($this->items[$i]->published == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>
<a href="<?php echo JRoute::_(ContactHelperRoute::getContactRoute($item->slug, $item->catid)); ?>">
<?php echo $item->name; ?></a>
Expand Down
2 changes: 1 addition & 1 deletion components/com_contact/views/contact/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="page-header">
<h2>
<?php if ($this->item->published == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>
<span class="contact-name"><?php echo $this->contact->name; ?></span>
</h2>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@

<td class="item-title">
<?php if ($this->items[$i]->published == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>
<a href="<?php echo JRoute::_(ContactHelperRoute::getContactRoute($item->slug, $item->catid)); ?>">
<?php echo $item->name; ?></a>
Expand Down
2 changes: 1 addition & 1 deletion components/com_content/views/article/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<div class="page-header">
<h2>
<?php if ($this->item->state == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>
<?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>
<a href="<?php echo $this->item->readmore_link; ?>"> <?php echo $this->escape($this->item->title); ?></a>
Expand Down
2 changes: 1 addition & 1 deletion components/com_content/views/category/tmpl/blog_item.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</h2>
<?php endif; ?>
<?php if ($this->item->state == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>

<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<div class="filters btn-toolbar">
<?php if ($this->params->get('filter_field') != 'hide') :?>
<div class="btn-group">
<label class="filter-search-lbl element-invisible" for="filter-search"><span class="label label-warning">unpublished</span><?php echo JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL').'&#160;'; ?></label>
<label class="filter-search-lbl element-invisible" for="filter-search"><span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span><?php echo JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL').'&#160;'; ?></label>
<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->state->get('list.filter')); ?>" class="inputbox" onchange="document.adminForm.submit();" title="<?php echo JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>" placeholder="<?php echo JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>" />
</div>
<?php endif; ?>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</h2>
<?php endif; ?>
<?php if ($this->item->state == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<small class="createdby">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

<td class="item-title">
<?php if ($this->items[$i]->published == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>
<a href="<?php echo JRoute::_(NewsFeedsHelperRoute::getNewsfeedRoute($item->slug, $item->catid)); ?>">
<?php echo $item->name; ?></a>
Expand Down
2 changes: 1 addition & 1 deletion components/com_newsfeeds/views/newsfeed/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<?php endif; ?>
<h2 class="<?php echo $direction; ?>">
<?php if ($this->item->published == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>
<a href="<?php echo $this->item->link; ?>" target="_blank">
<?php echo str_replace('&apos;', "'", $this->item->name); ?></a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
$height = 500;
}
if ($this->items[$i]->state == 0): ?>
<span class="label label-warning">Unpublished</span>
<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
<?php endif; ?>

<?php switch ($item->params->get('target', $this->params->get('target')))
Expand Down