| Summary | Viewing Inline HTML vs text message as user settable option |
| Queue | IMP |
| Queue Version | HEAD |
| Type | Enhancement |
| State | Accepted |
| Priority | 1. Low |
| Owners | |
| Requester | dion (dot) rowney (at) usask (dot) ca |
| Created | 05/15/2008 (415 days ago) |
| Due | |
| Updated | 12/14/2008 (202 days ago) |
| Assigned | |
| Resolved | |
| Attachments | |
| Milestone | |
| Patch | No |
team can do it better than my hack of a solution.
mime_drivers.php I added an if statment and changed the boolean value
to be a variable name:
if ( $GLOBALS['prefs']->getValue('html_inline_viewing') === '0' ) {
$viewHtmlInline = false;
} else {
$viewHtmlInline = true;
}
/**
* HTML driver settings
*/
$mime_drivers['imp']['html'] = array(
'inline' => $viewHtmlInline,
and created a new preference in prefs.php:
$_prefs['html_inline_viewing'] = array (
'value' => 1,
'locked' => false,
'shared' => false,
'type' => 'checkbox',
'desc' => _("View messages as HTML when both HTML and plain text are
available (this change takes effect after log out)?"),
'help' => 'prefs-notavailable'
);
State ⇒ Feedback
State ⇒ Accepted
Version ⇒ HEAD
Patch ⇒
Milestone ⇒
Summary ⇒ Viewing Inline HTML vs text message as user settable option
Type ⇒ Enhancement
Priority ⇒ 1. Low
State ⇒ New
Queue ⇒ IMP
add the ability to give users the choice of viewing messages in HTML
or text by default as a preference option.
Has the Horde team looked at adding this as a user settable option if
inline HTML and text are being permitted (and a message has both
formats being sent in message)?
Can this be added as a request for future releases?