You are here

function template_preprocess_forward in Forward 6

Same name and namespace in other branches
  1. 8.3 forward.module \template_preprocess_forward()
  2. 8 forward.module \template_preprocess_forward()
  3. 8.2 forward.module \template_preprocess_forward()
  4. 7.3 forward.module \template_preprocess_forward()
  5. 7 forward.module \template_preprocess_forward()
  6. 7.2 forward.module \template_preprocess_forward()
  7. 4.x forward.module \template_preprocess_forward()
  8. 4.0.x forward.module \template_preprocess_forward()

File

./forward.module, line 1004

Code

function template_preprocess_forward(&$variables) {
  $vars = $variables['vars'];
  foreach ($vars as $key => $value) {
    $variables[$key] = $value;
  }
}