Comment #1 on issue 725 by jgc.sevein: Clicking on "add new" button in
information object edit screen returns 404 error response
http://code.google.com/p/qubit-toolkit/issues/detail?id=725
As Jack Bates predicted, it is a routing problem.
Index: editIsadSuccess.php
===================================================================
--- editIsadSuccess.php (revision 2347)
+++ editIsadSuccess.php (working copy)
@@ -660,10 +660,10 @@
<?php // Don't show add/list buttons for new info objects ?>
<?php if ($informationObject->getId()): ?>
- <div class="menu-extra">
- <?php echo link_to(__('add new'), 'informationobject/createIsad'); ?>
- <?php echo link_to(__('list all'), 'informationobject/list'); ?>
- </div>
+<div class="menu-extra">
+ <?php echo link_to(__('add new'), array('module'
=> 'informationobject', 'action'
=> 'create')); ?>
+ <?php echo link_to(__('list all'), array('module'
=> 'informationobject', 'action'
=> 'list')); ?>
+</div>
<?php endif; ?>
</div>
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Issues" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/qubit-issues?hl=en
-~----------~----~----~----~------~----~------~--~---