Bug fixes

- Fix to some of the exports not working in legacy (non background-job) mode
- Issue also occured while using automation
pull/217/head
iglocska 2014-01-08 17:08:32 +01:00
parent 9eb5b7ffb7
commit f8424d484b
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ You can <?php echo $this->Html->link('reset', array('controller' => 'users', 'ac
<pre>
<?php
foreach ($sigTypes as $sigType) {
echo Configure::read('CyDefSIG.baseurl').'/events/text/'.$me['authkey'].'/'.$sigType . "\n";
echo Configure::read('CyDefSIG.baseurl').'/attributes/text/'.$me['authkey'].'/'.$sigType . "\n";
}
?>
</pre>

View File

@ -57,7 +57,7 @@
<?php
foreach ($sigTypes as $sigType): ?>
<li class="actions" style="text-align:center; width: auto; padding: 7px 2px;">
<?php echo $this->Html->link($sigType, array('action' => 'text', 'download' ,$sigType), array('class' => 'btn')) ?>
<?php echo $this->Html->link($sigType, array('controller' => 'attributes', 'action' => 'text', 'download' ,$sigType), array('class' => 'btn')) ?>
</li>
<?php endforeach; ?>
</ul>