diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.install | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 8dc92d45c..ff05becf9 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3430,6 +3430,15 @@ function system_update_7022() { } /** + * Change the PHP for settings permission. + */ +function system_update_7023() { + $ret = array(); + $ret[] = update_sql("UPDATE {role_permission} SET permission = 'use PHP for settings' WHERE permission = 'use PHP for block visibility'"); + return $ret; +} + +/** * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. */ |