summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2012-11-06 02:20:18 -0500
committerDavid Rothstein <drothstein@gmail.com>2012-11-06 02:20:18 -0500
commit6d462a30f69abf96cc05ceff1278f9ca279451ce (patch)
treef978abaae52d86610d300724072b95dad350d7bc /modules/system
parent6e344fd49cdaf55a21f1ff16bb312dcc897fbb78 (diff)
downloadbrdo-6d462a30f69abf96cc05ceff1278f9ca279451ce.tar.gz
brdo-6d462a30f69abf96cc05ceff1278f9ca279451ce.tar.bz2
Issue #1816148 by BTMash, David_Rothstein | Irous: Removed system_update_7075() for now, since it's causing problems.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.install26
1 files changed, 0 insertions, 26 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index dc3e3e22e..7b667678e 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -3052,32 +3052,6 @@ function system_update_7074() {
}
/**
- * Fix renamed queries from system_update_7000().
- */
-function system_update_7075() {
- $permission_changes = array(
- 'create blog entries' => 'create blog content',
- 'edit own blog entries' => 'edit own blog content',
- 'edit any blog entry' => 'edit any blog content',
- 'delete own blog entries' => 'delete own blog content',
- 'delete any blog entry' => 'delete any blog content',
-
- 'create forum topics' => 'create forum content',
- 'edit own forum topics' => 'edit own forum content',
- 'edit any forum topic' => 'edit any forum content',
- 'delete own forum topics' => 'delete own forum content',
- 'delete any forum topic' => 'delete any forum content',
- );
-
- foreach ($permission_changes as $permission_key => $permission_change) {
- db_update('role_permission')
- ->fields(array('permission' => $permission_change))
- ->condition('permission', $permission_key)
- ->execute();
- }
-}
-
-/**
* Convert menu_links query strings into arrays.
*/
function system_update_7076() {