Skip to content

Commit

Permalink
Merge branch 'patch-1' of git://github.com/renan/horde
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Nov 27, 2014
2 parents e458ea5 + 2ad5877 commit 69c855f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion framework/Mime/lib/Horde/Mime/Headers/MessageId.php
Expand Up @@ -21,7 +21,7 @@
* @package Mime
* @since 2.5.0
*/
class Horde_Mime_Headers_Messageid
class Horde_Mime_Headers_MessageId
extends Horde_Mime_Headers_Identification
{
/**
Expand Down
8 changes: 7 additions & 1 deletion imp/js/dimpbase.js
Expand Up @@ -2565,7 +2565,13 @@ var DimpBase = {
if (!this.viewport.getMetaData('nodelete')) {
r = sel.get('dataob');
if (e.shiftKey) {
this.moveSelected((r.last().VP_rownum == this.viewport.getMetaData('total_rows')) ? (r.first().VP_rownum - 1) : (r.last().VP_rownum + 1), true);
this.moveSelected(
(r.last().VP_rownum == this.viewport.getMetaData('total_rows'))
? (r.first().VP_rownum - 1)
: (r.last().VP_rownum + 1),
true,
true
);
}
this.deleteMsg({ vs: sel });
}
Expand Down
2 changes: 1 addition & 1 deletion imp/lib/Ftree.php
Expand Up @@ -758,7 +758,7 @@ protected function _insertElt($elt)

$change = false;
if (isset($this->_elts[$name])) {
if ($elt['a'] && self::ELT_NOSELECT) {
if ($elt['a'] & self::ELT_NOSELECT) {
return;
}
$change = true;
Expand Down

0 comments on commit 69c855f

Please sign in to comment.