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

Fixed an issue for sorting by Nickname at instance list view on aws_cloud module.

parent dbc15124
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
* *
*/ */
// Updated by yas 2015/03/26
// Updated by yas 2015/03/25 // Updated by yas 2015/03/25
// fixed a bug (aws_cloud_list) by yas 2013/10/29 // fixed a bug (aws_cloud_list) by yas 2013/10/29
...@@ -380,7 +381,7 @@ function aws_cloud_add_form_submit($form, &$form_state) { ...@@ -380,7 +381,7 @@ function aws_cloud_add_form_submit($form, &$form_state) {
else { else {
$data = $form_state['values']; $data = $form_state['values'];
$data['is_new'] = FALSE; $data['is_new'] = FALSE;
$message = t('Cloud @cloud_name has been updated.', $message = t('Cloud @cloud_name has been updated. ',
array( array(
'@cloud_name' => $form_state['values']['cloud_name'], '@cloud_name' => $form_state['values']['cloud_name'],
)); ));
...@@ -506,4 +507,3 @@ function theme_aws_cloud_list() { ...@@ -506,4 +507,3 @@ function theme_aws_cloud_list() {
$output = theme('table', array('header' => $header, 'rows' => $rows) ); $output = theme('table', array('header' => $header, 'rows' => $rows) );
return $output; 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