_system_test_second_shutdown_function

Versions
mediamosa-21
_system_test_second_shutdown_function($arg1, $arg2)

Dummy shutdown function.

Code

modules/simpletest/tests/system_test.module, line 309

<?php
function _system_test_second_shutdown_function($arg1, $arg2) {
  // Output something, page has already been printed and the session stored
  // so we can't use drupal_set_message.
  print t('Second shutdown function, arg1 : @arg1, arg2: @arg2', array('@arg1' => $arg1, '@arg2' => $arg2));
}
?>