diff --git a/ctools.module b/ctools.module index 7dfc989..97b54c2 100644 --- a/ctools.module +++ b/ctools.module @@ -702,7 +702,7 @@ function ctools_export_ui_task_access($plugin_name, $op, $item = NULL) { * Cache callback on behalf of ctools_export_ui. */ function ctools_export_ui_context_cache_get($plugin_name, $key) { - dsm('should not be called!'); + // Should not be called. return; } @@ -710,7 +710,7 @@ function ctools_export_ui_context_cache_get($plugin_name, $key) { * Cache callback on behalf of ctools_export_ui. */ function ctools_export_ui_context_cache_set($plugin_name, $key, $item) { - dsm('should not be called!'); + // Should not be called. return; } diff --git a/includes/stylizer.inc b/includes/stylizer.inc index 9fdc81d..ab00076 100644 --- a/includes/stylizer.inc +++ b/includes/stylizer.inc @@ -110,7 +110,6 @@ function ctools_stylizer_build_style($plugin, $settings, $add_css = FALSE) { $processor->execute($path, $plugin, $settings); // @todo -- there needs to be an easier way to get at this. -// dsm($processor->message_log); // Add filenames to our conversions. } diff --git a/page_manager/page_manager.admin.inc b/page_manager/page_manager.admin.inc index 22ecd63..0225a08 100644 --- a/page_manager/page_manager.admin.inc +++ b/page_manager/page_manager.admin.inc @@ -182,18 +182,6 @@ function page_manager_get_pages($tasks, &$pages, $task_id = NULL) { $pages['storages'][$storage] = $storage; $row['data']['storage'] = array('data' => $storage, 'class' => array('page-manager-page-storage')); - -/* - if (empty($task['disabled'])) { - $item = menu_get_item($path); - if (empty($item)) { - dsm($path); - } - else { - dsm($item); - } - } -*/ $operations = array( array( 'title' => t('Edit'), @@ -1121,9 +1109,6 @@ function page_manager_render_operations(&$page, $operations, $active_trail, $att // We only render an li for things in the same nav tree. if (empty($operation['location']) || $operation['location'] == $location) { - if (!is_array($attributes['class'])) { - dsm($attributes['class']); - } $class = empty($attributes['class']) || !is_array($attributes['class']) ? array() : $attributes['class']; if ($id == $first) { $class[] = 'operation-first'; diff --git a/page_manager/page_manager.module b/page_manager/page_manager.module index 790c64e..df3fb92 100644 --- a/page_manager/page_manager.module +++ b/page_manager/page_manager.module @@ -801,9 +801,6 @@ function page_manager_get_task_subtasks($task) { if (is_array($retval)) { return $retval; } - else { - dsm($retval); - } } return array();