Skip to content
Snippets Groups Projects
Commit 2a77b1be authored by Yas Naoi's avatar Yas Naoi
Browse files

Fixed a bug for aws_cloud_ui.inc - a form aws_cloud_add_button

parent 0fd421d1
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,8 @@
*
*/
// fixed a bug (aws_cloud_list) by yas 2013/10/29
/**
* Listing page for all the clouds in the system
*/
......@@ -15,8 +17,10 @@ function aws_cloud_list() {
drupal_add_js(cloud_get_module_base() . 'js/cloud.js', 'module');
$form = drupal_get_form('aws_cloud_add_button');
$output = '';
$output .= drupal_render(drupal_get_form('aws_cloud_add_button'));
$output .= drupal_render($form);
$output .= theme('aws_cloud_list');
return $output;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment