diff options
| author | michael pereira | 2011-03-16 10:05:20 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-16 10:05:20 +0100 |
| commit | ef1f634b2ec92107137c54e3af32de01135f02c9 (patch) | |
| tree | 60a5523e14bf7c5831c419f9fc2bf667ebcf06ed /application/modules/dev/views/scripts/bootmenu | |
| parent | Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-ef1f634b2ec92107137c54e3af32de01135f02c9.tar.gz pbs2-ef1f634b2ec92107137c54e3af32de01135f02c9.tar.xz pbs2-ef1f634b2ec92107137c54e3af32de01135f02c9.zip | |
Ressource Controller setzt jetzt die Session fuer ausgewaehltes Bootmenuentry
Diffstat (limited to 'application/modules/dev/views/scripts/bootmenu')
| -rw-r--r-- | application/modules/dev/views/scripts/bootmenu/index.phtml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/application/modules/dev/views/scripts/bootmenu/index.phtml b/application/modules/dev/views/scripts/bootmenu/index.phtml index b29a5cc..c42a09a 100644 --- a/application/modules/dev/views/scripts/bootmenu/index.phtml +++ b/application/modules/dev/views/scripts/bootmenu/index.phtml @@ -75,8 +75,17 @@ <?php $config = $this->configmapper->find($bootmenuentry->getConfigID());?> <tr> <td class='action'> - <a href='/dev/resource/getbootmenuentry/bootmenuentryID/<?php echo $bootmenuentry->getID();?>'> - <img src='/media/img/play.gif'> + <a href="<?php echo $this->url( + array( + 'module' => 'dev', + 'controller' => 'resource', + 'action' => 'getbootmenuentry', + 'bootmenuentryID' => $bootmenuentry->getID(), + 'bootosID' => $bootmenuentry->getBootosID(), + 'alpha' => $_SESSION['alphasessionID'] + ), + 'default', + true, false) ?>"><img src='/media/img/play.gif'> </a> </td> <td><?php echo $this->escape($bootmenuentry->getID()); ?></td> |
