summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-08-17 22:05:22 +0000
committerDries Buytaert <dries@buytaert.net>2010-08-17 22:05:22 +0000
commit755913e0b7fc552126b3cf2d5074b911f24f996b (patch)
tree0b7ba3fa4aa81fd7d01a28873bb04aac4efe73e5 /modules/system/system.install
parent16c888a917c889faf6d29fa6162201c9c8810f2f (diff)
downloadbrdo-755913e0b7fc552126b3cf2d5074b911f24f996b.tar.gz
brdo-755913e0b7fc552126b3cf2d5074b911f24f996b.tar.bz2
- Patch #443286 by c960657, Damien Tournoud, drifter, webkenny, scor: international characters break file handling.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 492df8365..d4da8b4a7 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -2351,10 +2351,10 @@ function system_update_7046() {
variable_set('theme_garland_settings', $settings);
// Remove Garland's color files since they won't match Minnelli's.
foreach (variable_get('color_garland_files', array()) as $file) {
- @unlink($file);
+ @drupal_unlink($file);
}
if (isset($file) && $file = dirname($file)) {
- @rmdir($file);
+ @drupal_rmdir($file);
}
variable_del('color_garland_palette');
variable_del('color_garland_stylesheets');