PDA

View Full Version : possible bug in messages.php


anno1986
01-22-2014, 02:04 PM
LINE 97 in messages.php should be $this->setFlags(...) instead of $this->setFlagss(...)


--- v1.3.4/messages.php 2013-08-25 21:41:12.000000000 +0200
+++ src/messages.php 2014-01-13 21:20:16.000000000 +0100
@@ -97,7 +97,7 @@
$this->setField("folder", $folder);
}
catch(MessageNotfoundException $pne){
- $this->setFlagss("message_error", "outbox_empty");
+ $this->setFlags("message_error", "outbox_empty");
}
}

Hall of Famer
01-27-2014, 01:46 AM
Oh yeah, this is a typo. Thanks for pointing it out.