drupal/modules/simpletest/tests/actions_loop_test.install

13 lines
221 B
Plaintext

<?php
// $Id$
/**
* Implementation of hook_install().
*/
function actions_loop_test_install() {
db_update('system')
->fields(array('weight' => 1))
->condition('name', 'actions_loop_test')
->execute();
}