diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-11 21:11:42 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-11 21:11:42 +0000 |
| commit | da2e18f380734999ec1d1ba57091850bf296f554 (patch) | |
| tree | c6a2c18e08299c9ed14ef708fd8e25920625ae90 /roundcubemail/program/include/main.inc | |
| parent | f5050a3e1f1e3dfabc03e6f02263c7d0d656e76d (diff) | |
Better support for Courier IMAP
git-svn-id: https://svn.roundcube.net/trunk@25 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/main.inc')
| -rw-r--r-- | roundcubemail/program/include/main.inc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index e2e7a00be..2e5be7b0e 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -386,8 +386,13 @@ function show_message($message, $type='notice') function console($msg, $type=1) { - print $msg; - print "\n<hr>\n"; + if ($GLOBALS['REMOTE_REQUEST']) + print "// $msg\n"; + else + { + print $msg; + print "\n<hr>\n"; + } } |
