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

Fixed bug:Function name must be a string in...

Fixed bug:Function name must be a string in /var/www/html/drupal-7.24/sites/all/modules/cloud/cloud.inc on line 1120
parent 2f6166af
No related branches found
No related tags found
No related merge requests found
......@@ -1120,7 +1120,7 @@ function _cloud_callback_get_all_instances_list() {
$index_start = strrpos($output, '<tbody>');
$index_end = strrpos($output, '</tbody>');
if ( isset($form['Nickname']) === FALSE || $form($table_data['Nickname']) == 0 ) { // No element present
if ( isset($form['Nickname']) === FALSE || sizeof($table_data['Nickname']) == 0 ) { // No element present
$output = 'NULL';
}
else {
......
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