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

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

Fixed bug again: Function name must be a string in /var/www/html/drupal-7.24/sites/all/modules/cloud/cloud.inc on line 1120
parent be8c7379
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 || sizeof($table_data['Nickname']) == 0 ) { // No element present
if ( isset($form['Nickname']) === FALSE) { // 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