Changr filename back.
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 17 Jul 2007 01:23:13 +0000 (01:23 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 17 Jul 2007 01:23:13 +0000 (01:23 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12548 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/squirrelmail_rpc.php [moved from src/rpc.php with 97% similarity]

similarity index 97%
rename from src/rpc.php
rename to src/squirrelmail_rpc.php
index a1c05ec56aaf5332595e6787e3df5cf0f450061d..35969afd041d083bd0d6352535e1ec54694ca523 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 /**
-  * rpc.php
+  * squirrelmail_rpc.php
   *
   * This file contains the entry point to the "SquirrelMail API" -- the 
   * remote procedure call request receiver.
   */
 
 /** This is the squirrelmail_rpc page */
-define('PAGE_NAME', 'rpc');
+define('PAGE_NAME', 'squirrelmail_rpc');
 
 //FIXME: If we decide to route ALL requests, even normal page
 //       requests through this file, need to change page requests
 //       to something like this
-//http://example.org/squirrelmail/src/rpc.php?page=read_body&passed_id=47633...
+//http://example.org/squirrelmail/src/squirrelmail_rpc.php?page=read_body&passed_id=47633...
 //       This file would then add ".php" to the "page" variable
 //       and pass the request on to that page by simply require()ing
 //       that page and exiting.