Browse Source

Remove class

pull/646/head
danpros 2 years ago
parent
commit
1ec6715acb
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      system/admin/views/popular-posts.html.php
  2. +1
    -1
      system/admin/views/posts-list.html.php
  3. +1
    -1
      system/admin/views/scheduled.html.php
  4. +1
    -1
      system/admin/views/user-draft.html.php
  5. +1
    -1
      system/admin/views/user-posts.html.php

+ 1
- 1
system/admin/views/popular-posts.html.php View File

@ -16,7 +16,7 @@
</tr> </tr>
<?php foreach ($posts as $p): ?> <?php foreach ($posts as $p): ?>
<?php if (strpos($p->file, '/scheduled/') == false && strpos($p->file, '/draft/') == false) { ?> <?php if (strpos($p->file, '/scheduled/') == false && strpos($p->file, '/draft/') == false) { ?>
<tr class="<?php echo $class ?>">
<tr>
<td><a target="_blank" href="<?php echo $p->url ?>"><?php echo $p->title ?></a></td> <td><a target="_blank" href="<?php echo $p->url ?>"><?php echo $p->title ?></a></td>
<td><?php echo format_date($p->date) ?></td> <td><?php echo format_date($p->date) ?></td>
<?php if (config("views.counter") == "true"): ?> <?php if (config("views.counter") == "true"): ?>


+ 1
- 1
system/admin/views/posts-list.html.php View File

@ -15,7 +15,7 @@
<th><?php echo i18n('Operations');?></th> <th><?php echo i18n('Operations');?></th>
</tr> </tr>
<?php foreach ($posts as $p): ?> <?php foreach ($posts as $p): ?>
<tr class="<?php echo $class ?>">
<tr>
<td><a target="_blank" href="<?php echo $p->url ?>"><?php echo $p->title ?></a></td> <td><a target="_blank" href="<?php echo $p->url ?>"><?php echo $p->title ?></a></td>
<td><?php echo format_date($p->date) ?></td> <td><?php echo format_date($p->date) ?></td>
<?php if (config("views.counter") == "true"): ?> <?php if (config("views.counter") == "true"): ?>


+ 1
- 1
system/admin/views/scheduled.html.php View File

@ -13,7 +13,7 @@
<th><?php echo i18n('Operations');?></th> <th><?php echo i18n('Operations');?></th>
</tr> </tr>
<?php foreach ($posts as $p): ?> <?php foreach ($posts as $p): ?>
<tr class="<?php echo $class ?>">
<tr>
<td><?php echo $p->title ?></td> <td><?php echo $p->title ?></td>
<td><?php echo format_date($p->date, 'd F Y, H:i:s') ?></td> <td><?php echo format_date($p->date, 'd F Y, H:i:s') ?></td>
<td><a href="<?php echo str_replace('category', 'admin/categories', $p->categoryUrl); ?>"><?php echo strip_tags($p->category);?></a></td> <td><a href="<?php echo str_replace('category', 'admin/categories', $p->categoryUrl); ?>"><?php echo strip_tags($p->category);?></a></td>


+ 1
- 1
system/admin/views/user-draft.html.php View File

@ -13,7 +13,7 @@
<th><?php echo i18n('Operations');?></th> <th><?php echo i18n('Operations');?></th>
</tr> </tr>
<?php foreach ($posts as $p): ?> <?php foreach ($posts as $p): ?>
<tr class="<?php echo $class ?>">
<tr>
<td><?php echo $p->title ?></td> <td><?php echo $p->title ?></td>
<td><?php echo format_date($p->date) ?></td> <td><?php echo format_date($p->date) ?></td>
<td><a href="<?php echo str_replace('category', 'admin/categories', $p->categoryUrl); ?>"><?php echo strip_tags($p->category);?></a></td> <td><a href="<?php echo str_replace('category', 'admin/categories', $p->categoryUrl); ?>"><?php echo strip_tags($p->category);?></a></td>


+ 1
- 1
system/admin/views/user-posts.html.php View File

@ -16,7 +16,7 @@
<th><?php echo i18n('Operations');?></th> <th><?php echo i18n('Operations');?></th>
</tr> </tr>
<?php foreach ($posts as $p): ?> <?php foreach ($posts as $p): ?>
<tr class="<?php echo $class ?>">
<tr>
<td><a target="_blank" href="<?php echo $p->url ?>"><?php echo $p->title ?></a></td> <td><a target="_blank" href="<?php echo $p->url ?>"><?php echo $p->title ?></a></td>
<td><?php echo format_date($p->date) ?></td> <td><?php echo format_date($p->date) ?></td>
<?php if (config("views.counter") == "true"): ?> <?php if (config("views.counter") == "true"): ?>


Loading…
Cancel
Save