@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | */ |
323 | 323 | public function createFolder($name) { |
324 | 324 | $this->checkConnection(); |
325 | - return imap_createmailbox($this->connection, $this->getAddress() . imap_utf7_encode($name)); |
|
325 | + return imap_createmailbox($this->connection, $this->getAddress().imap_utf7_encode($name)); |
|
326 | 326 | } |
327 | 327 | |
328 | 328 | /** |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | */ |
336 | 336 | public function renameFolder($old_name, $new_name) { |
337 | 337 | $this->checkConnection(); |
338 | - return imap_renamemailbox($this->connection, $this->getAddress() . imap_utf7_encode($old_name), $this->getAddress() . imap_utf7_encode($new_name)); |
|
338 | + return imap_renamemailbox($this->connection, $this->getAddress().imap_utf7_encode($old_name), $this->getAddress().imap_utf7_encode($new_name)); |
|
339 | 339 | } |
340 | 340 | |
341 | 341 | /** |
@@ -347,7 +347,7 @@ discard block |
||
347 | 347 | */ |
348 | 348 | public function deleteFolder($name) { |
349 | 349 | $this->checkConnection(); |
350 | - return imap_deletemailbox($this->connection, $this->getAddress() . imap_utf7_encode($name)); |
|
350 | + return imap_deletemailbox($this->connection, $this->getAddress().imap_utf7_encode($name)); |
|
351 | 351 | } |
352 | 352 | |
353 | 353 | /** |