summaryrefslogtreecommitdiff
path: root/modules/drupal/drupal.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r--modules/drupal/drupal.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module
index acdc64584..980467109 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -240,8 +240,8 @@ function theme_client_list($clients) {
// The mission is stripped of any HTML tags to keep the output simple and consistent.
$output = "\n<dl>\n";
foreach ($clients as $client) {
- $output .= ' <dt><a href="' . check_url($client->link) . '">' . check_plain($client->name) . '</a> - ' . check_plain($client->slogan) . "</dt>\n";
- $output .= ' <dd>' . strip_tags($client->mission) . "</dd>\n";
+ $output .= ' <dt><a href="'. check_url($client->link) .'">'. check_plain($client->name) .'</a> - '. check_plain($client->slogan) ."</dt>\n";
+ $output .= ' <dd>'. strip_tags($client->mission) ."</dd>\n";
}
$output .= "</dl>\n";
return $output;