Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Won't Fix
-
Affects Version/s: 1.8
-
Fix Version/s: None
-
Component/s: Messages
-
Labels:None
-
Environment:Firefox 2.0.0.3
-
Affected Branches:MOODLE_18_STABLE
Description
Only half of the Send Message button displays in the "send message" pop-up window. This is a Firefox issue not IE.
Issue Links
| This issue duplicates: | ||||
| MDL-14280 | No "Send message" button. |
|
|
|
I found a fix ...
In moodle/message/send.php, I deleted <br /> on LINE 105, and that took care of the problem:
from...
echo '<br /><input type="submit" value="'.get_string('sendmessage', 'message').'" />';
to...
echo '<input type="submit" value="'.get_string('sendmessage', 'message').'" />';