Download & Extend

notice: Undefined variable: oubput in messaging_help() (line 62 of messaging.module)

Project:Messaging
Version:7.x-1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

I could be wrong but I think there is a typo in the latest 6.x dev and beta version of the code.

The error is
notice: Undefined variable: oubput in messaging_help() (line 62 of /public_html/sites/all/modules/messaging/messaging.module).

The code in questions is line 62 of the 6.x dev and 63 in the 6.x beta line 123 of 7.x dev and 124 of the 7.x beta

<?php
      $oubput
.= t('If using raw tokens for templates, possibly you\'ll need some additional formatting here.');
?>

Which I'm guessing should be
<?php
      $output
.= t('If using raw tokens for templates, possibly you\'ll need some additional formatting here.');
?>

Can someone else please confirm this?

Comments

#1

Version:6.x-4.x-dev» 7.x-1.x-dev

Here is my first attempt at a patch so please let me know if this is correct.

Also changing to the latest 7 branch

AttachmentSize
messaging-typo-oubput-1414164-1.patch 1.78 KB
nobody click here