? includes/table.inc Index: commands/core/variable.drush.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/core/variable.drush.inc,v retrieving revision 1.1 diff -u -p -r1.1 variable.drush.inc --- commands/core/variable.drush.inc 13 Oct 2009 02:23:58 -0000 1.1 +++ commands/core/variable.drush.inc 14 Oct 2009 13:00:24 -0000 @@ -87,7 +87,7 @@ function variable_drush_command() { * Command callback. * List your site's variables. */ -function drush_variable_get() { +function drush_variable_variable_get() { $args = func_get_args(); $placeholders = array(); $sql = ''; @@ -118,7 +118,7 @@ function drush_variable_get() { * Command callback. * Set a variable. */ -function drush_variable_set() { +function drush_variable_variable_set() { $args = func_get_args(); if (!isset($args[0])) { drush_set_error('DRUSH_VARIABLE_ERROR', dt('No variable specified.')); @@ -175,7 +175,7 @@ function drush_variable_set() { * Command callback. * Delete a variable. */ -function drush_variable_delete() { +function drush_variable_variable_delete() { $args = func_get_args(); if (!isset($args[0])) { drush_set_error('DRUSH_VARIABLE_ERROR', dt('No variable specified'));