actions_loop_test_install

Versions
mediamosa-21
actions_loop_test_install()

Implements hook_install().

Code

modules/simpletest/tests/actions_loop_test.install, line 6

<?php
function actions_loop_test_install() {
   db_update('system')
    ->fields(array('weight' => 1))
    ->condition('name', 'actions_loop_test')
    ->execute();
}
?>