Author: sevein Date: Thu Nov 26 16:14:16 2009 New Revision: 3969 Log: Show validation messages block inside a row, HTML requirements.
Modified: trunk/apps/qubit/modules/informationobject/templates/showIsadSuccess.php Modified: trunk/apps/qubit/modules/informationobject/templates/showIsadSuccess.php ============================================================================== --- trunk/apps/qubit/modules/informationobject/templates/showIsadSuccess.php Thu Nov 26 15:36:37 2009 (r3968) +++ trunk/apps/qubit/modules/informationobject/templates/showIsadSuccess.php Thu Nov 26 16:14:16 2009 (r3969) @@ -10,13 +10,17 @@ </tr> <?php if (isset($errorSchema)): ?> - <div class="messages error"> - <ul> - <?php foreach ($errorSchema as $error): ?> - <li><?php echo $error ?></li> - <?php endforeach; ?> - </ul> - </div> +<tr> + <td colspan="2"> + <div class="messages error"> + <ul> + <?php foreach ($errorSchema as $error): ?> + <li><?php echo $error ?></li> + <?php endforeach; ?> + </ul> + </div> + </td> +</tr> <?php endif; ?> <?php if (null !== $digitalObject): ?> -- You received this message because you are subscribed to the Google Groups "Qubit Toolkit Commits" 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-commits?hl=en.
