summaryrefslogtreecommitdiffstats
path: root/docs/lasso-book
diff options
context:
space:
mode:
authorDamien Laniel <dlaniel@entrouvert.com>2007-06-14 17:50:40 +0000
committerDamien Laniel <dlaniel@entrouvert.com>2007-06-14 17:50:40 +0000
commit514b15a52f405327c000883bc01cb67ba1cb94ea (patch)
tree7ba0fdbf02bdd29e83ca9197e3ac17957776ccf1 /docs/lasso-book
parent6a5f0479a14268ac080e6b942e3def0d8564fb56 (diff)
downloadlasso-514b15a52f405327c000883bc01cb67ba1cb94ea.tar.gz
lasso-514b15a52f405327c000883bc01cb67ba1cb94ea.tar.xz
lasso-514b15a52f405327c000883bc01cb67ba1cb94ea.zip
rephrase a meaningless sentence
Diffstat (limited to 'docs/lasso-book')
-rw-r--r--docs/lasso-book/writing-a-c-sp.txt5
-rw-r--r--docs/lasso-book/writing-a-php-sp.txt4
2 files changed, 5 insertions, 4 deletions
diff --git a/docs/lasso-book/writing-a-c-sp.txt b/docs/lasso-book/writing-a-c-sp.txt
index c8a82d7c..b3e855d2 100644
--- a/docs/lasso-book/writing-a-c-sp.txt
+++ b/docs/lasso-book/writing-a-c-sp.txt
@@ -389,8 +389,9 @@ Identity and session dumps should be restored to prepare the logout request.
lasso_logout_build_request_msg(logout);
-The service provider must then make a SOAP request to the identity provider;
-``msg_url`` and ``msg_body``. You should then pass the answer to Lasso::
+The service provider must then make a SOAP request to the identity provider as above with
+LASSO_PROFILE(logout)->msg_url and LASSO_PROFILE(logout)->msg_body values.
+You should then pass the answer to Lasso::
lasso_logout_process_response_msg(logout, answer);
diff --git a/docs/lasso-book/writing-a-php-sp.txt b/docs/lasso-book/writing-a-php-sp.txt
index d56f638f..590b2f34 100644
--- a/docs/lasso-book/writing-a-php-sp.txt
+++ b/docs/lasso-book/writing-a-php-sp.txt
@@ -346,8 +346,8 @@ Identity and session dumps should be restored to prepare the logout request.
$lassoLogout->buildRequestMsg();
-The service provider must then make a SOAP request to the identity provider;
-``$msgUrl`` and ``$msgBody``. You should then pass the answer to Lasso::
+The service provider must then make a SOAP request to the identity provider as above with
+$lassoLogout->msgUrl and $lassoLogout->msgBody values. You should then pass the answer to Lasso::
$lassoLogout->processResponseMsg($answer));