summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-03-26 22:33:22 +0000
committerDries Buytaert <dries@buytaert.net>2010-03-26 22:33:22 +0000
commit2b2980261c4a0d40d9fbccc19daa71b7361c484b (patch)
tree598432c67ebc233eda20ae6bb8bc464dccc6a45f /modules/system/system.module
parent7b2581e15aceda55ef10684953072731b0895e75 (diff)
downloadbrdo-2b2980261c4a0d40d9fbccc19daa71b7361c484b.tar.gz
brdo-2b2980261c4a0d40d9fbccc19daa71b7361c484b.tar.bz2
- Rolled back a patch that I didn't meant to commit yet.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index bea366815..a8e57d924 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -2097,10 +2097,6 @@ function system_get_files_database(&$files, $type) {
*/
function system_update_files_database(&$files, $type) {
$result = db_query("SELECT * FROM {system} WHERE type = :type", array(':type' => $type));
-
- // Remember if any module or theme is moved to a new filename so we can
- // clear the system_list cache (in particular, the 'filepaths' subarray).
- $filename_changed = FALSE;
// Add all files that need to be deleted to a DatabaseCondition.
$delete = db_or();
@@ -2131,10 +2127,6 @@ function system_update_files_database(&$files, $type) {
->fields($updated_fields)
->condition('filename', $old_filename)
->execute();
-
- if (isset($updated_fields['filename'])) {
- $filename_changed = TRUE;
- }
}
// Indicate that the file exists already.
@@ -2143,7 +2135,6 @@ function system_update_files_database(&$files, $type) {
else {
// File is not found in file system, so delete record from the system table.
$delete->condition('filename', $file->filename);
- $filename_changed = TRUE;
}
}
@@ -2174,13 +2165,6 @@ function system_update_files_database(&$files, $type) {
}
}
$query->execute();
-
- // If any module or theme was moved to a new location, we need to reset the
- // system_list cache or we will continue to load the old copy, look for DB
- // schema updates in the wrong place, etc.
- if ($filename_changed) {
- system_list_reset();
- }
}
/**