From e54039db225f6275f5a987669c4864b0caf441ef Mon Sep 17 00:00:00 2001
From: Bob Vincent <bobvin@pillars.net>
Date: Wed, 11 Apr 2012 03:24:35 -0400
Subject: [PATCH] Issue #1527722 by pillarsdotnet: Fix for php notice:
 Undefined variable: output in click_help() (line 21 of
 sites/all/modules/click/click.module).

---
 click.module |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/click.module b/click.module
index 1ccd885079236a1b7fa440c7d15e738f2274b065..8a2935976d050c6ae5a3e53f975d6c055dc6ce50 100644
--- a/click.module
+++ b/click.module
@@ -14,10 +14,8 @@ define(CLICK_CRON_TIMESTAMP_WEEK, 'click_cron_timestamp_week');
 function click_help($path, $arg) {
   switch ($path) {
     case 'admin/help#click':
-      $output = t('Track click thrus from newletters and ads on other sites');
-      break;
+      return t('Track click thrus from newletters and ads on other sites');
   }
-  return $output;
 }
 
 /**
-- 
1.7.9.1

