diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-06-29 00:21:00 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-06-29 00:21:00 +0000 |
commit | 3893c01799989452adad08a7636bf71e276da046 (patch) | |
tree | 0d28900e7e782d87bf4d8712aaef991e164f3ce4 /scripts | |
parent | 8e6d6e38ac5600a91fe121603cf457c138305f73 (diff) | |
download | brdo-3893c01799989452adad08a7636bf71e276da046.tar.gz brdo-3893c01799989452adad08a7636bf71e276da046.tar.bz2 |
#838438 follow-up by Damien Tournoud: db_prefix is no longer a global, wrong path given to drupal_var_export() function file.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/dump-database-d6.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dump-database-d6.sh b/scripts/dump-database-d6.sh index ff21aedf2..7bcca95c1 100644 --- a/scripts/dump-database-d6.sh +++ b/scripts/dump-database-d6.sh @@ -29,7 +29,7 @@ include_once './includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); // Include the utility drupal_var_export() function. -include_once dirname(__FILE__) . '/../includes/variable.inc'; +include_once dirname(__FILE__) . '/../includes/utility.inc'; // Output the PHP header. $output = "<?php\n\n"; |