theme_system_powered_by

Versions
mediamosa-21
theme_system_powered_by($variables)

Format the Powered by Drupal text.

Related topics

Code

modules/system/system.module, line 3116

<?php
function theme_system_powered_by($variables) {
  return '<span>' . t('Powered by <a href="@poweredby">Drupal</a>', array('@poweredby' => 'http://drupal.org')) . '</span>';
}
?>