summaryrefslogtreecommitdiff
path: root/roundcubemail/index.php
diff options
context:
space:
mode:
authorroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-03-23 22:32:47 +0000
committerroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-03-23 22:32:47 +0000
commit3e94d97cdbfd9926ca1182654c60b88d77871124 (patch)
tree3b7bf1caed4bc0755ec3e76c520cb6fb7ba565c3 /roundcubemail/index.php
parent21f5cae2c2ac9a4e6db08ca05f532be40eabd913 (diff)
Started implementing search function
git-svn-id: https://svn.roundcube.net/trunk@171 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/index.php')
-rw-r--r--roundcubemail/index.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php
index 72a682694..8a98af6ff 100644
--- a/roundcubemail/index.php
+++ b/roundcubemail/index.php
@@ -266,9 +266,12 @@ if ($_task=='mail')
if ($_action=='getunread')
include('program/steps/mail/getunread.inc');
- if ($_action=='list' && $_GET['_remote'])
+ if ($_action=='list' && isset($_GET['_remote']))
include('program/steps/mail/list.inc');
+ if ($_action=='search')
+ include('program/steps/mail/search.inc');
+
if ($_action=='rss')
include('program/steps/mail/rss.inc');