Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Change weight for ditoolsi_profile.
  4.  */
  5. function ditoolsi_profile_update_7001() {
  6.   db_update('system')
  7.     ->fields(array(
  8.       'weight' => 2,
  9.     ))
  10.     ->condition('name', 'ditoolsi_profile')
  11.     ->condition('type', 'module')
  12.     ->execute();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement