Adding comments, playing with REST
authorDebian Live user <amnesia@amnesia.(none)>
Thu, 2 May 2013 21:08:15 +0000 (17:08 -0400)
committerTim Otten <totten@civicrm.org>
Mon, 6 May 2013 22:47:31 +0000 (15:47 -0700)
CRM/Utils/REST.php

index faefd4173bfa1da41ec2d179be36eefb2667b8f7..63233e7aa9deb9840b28432f725c9462de308198 100644 (file)
@@ -334,6 +334,8 @@ class CRM_Utils_REST {
     // Check for valid session.  Session ID's only appear here if you have
     // run the rest_api login function.  That might be a problem for the
     // AJAX methods.
+
+       // XXX This is the old way of doing it. We're going to want to get rid of this
     $session = CRM_Core_Session::singleton();
     if ($session->get('PHPSESSID')) {
       $valid_user = TRUE;
@@ -352,6 +354,7 @@ class CRM_Utils_REST {
 
     // If we didn't find a valid user either way, then die.
     if (empty($valid_user)) {
+       // XXX correct error so only reflects api_key
       return self::error("Invalid session or user api_key invalid");
     }