diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-22 00:55:15 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-22 00:55:15 +0100 |
commit | 3060bfc76b6dc58bb1fa241a17bc15926b39e515 (patch) | |
tree | 70467c49dee8cd9072abeded01bf9b9067792acb /app/view/templates/home.php | |
parent | b7c2d553face9ccdc5f96bcaaa181510c4328530 (diff) | |
download | wcms-3060bfc76b6dc58bb1fa241a17bc15926b39e515.tar.gz wcms-3060bfc76b6dc58bb1fa241a17bc15926b39e515.zip |
new feature : multi render
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r-- | app/view/templates/home.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index f95c60f..c47a3ec 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -85,7 +85,7 @@ <tbody> <?php foreach ($table2 as $item) { ?> <tr> - <?php if($user->issupereditor()) { ?><td class="hidephone"><input type="checkbox" name="pagesid[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>" form="multiedit"></td><?php } ?> + <?php if($user->issupereditor()) { ?><td class="hidephone"><input type="checkbox" name="pagesid[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>" form="multi"></td><?php } ?> <td><label title="<?= $item->title() ?>" for="id_<?= $item->id() ?>"><?= $item->id() ?></label></td> <td><a href="<?= $this->upage('pageedit', $item->id()) ?>"><img src="<?= Wcms\Model::iconpath() ?>edit.png" class="icon"></a></td> <td><a href="<?= $this->upage('pageread/', $item->id()) ?>" target="_blank"><img src="<?= Wcms\Model::iconpath() ?>read.png" class="icon"></a></td> |