diff options
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/templates/editleftbar.php | 2 | ||||
-rw-r--r-- | app/view/templates/home.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/view/templates/editleftbar.php b/app/view/templates/editleftbar.php index 7a2a40b..8da25c3 100644 --- a/app/view/templates/editleftbar.php +++ b/app/view/templates/editleftbar.php @@ -106,7 +106,7 @@ <?php } else { foreach($art->templateoptions() as $option) { - if($option != 'externalsavascript') { + if($option != 'externaljavascript') { echo '<input type="hidden" name="templateoptions[]" value="'.$option.'">'; } } diff --git a/app/view/templates/home.php b/app/view/templates/home.php index a59fddf..70474c1 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -74,7 +74,7 @@ <td class="delete"><a href="<?= $this->uart('artdelete', $item->id()) ?>" >✖</a></td> <td class="log"><a href="<?= $this->uart('artlog', $item->id()) ?>" target="_blank">⁋</a></td> <td class="tag"><a title="<?= $item->tag('string') ?>"><?= $item->tag('sort') ?></a></td> - <td class="summary"><?= $item->description() ?></td> + <td class="summary" title="<?= $item->description() ?>"><?= $item->description('short') ?></td> <td class="linkto"><a title="<?= $item->linkto('string') ?>" ><?= $item->linkto('sort') ?></a></td> <td class="linkfrom"><a title="<?= $item->linkfrom('string') ?>" ><?= $item->linkfrom('sort') ?></a></td> <td class="datemodif"><?= $item->datemodif('hrdi') ?></td> |