Changeset 2943
- Timestamp:
- 09/24/08 15:50:07 (8 weeks ago)
- Location:
- branches/0.11
- Files:
-
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
samples/pub/soap-test.php (modified) (1 diff)
-
samples/pub/xmlrpc-test.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/CHANGELOG
r2931 r2943 5 5 ------------------------------- 6 6 7 FIX: SOAP and XMLRPC test scripts in sample app are broken (#866) (David) 7 8 FIX: Certain validator names will cause a fatal error (#863) (David) 8 9 FIX: Sample app SearchEngineSpamAction works with invalid product names (#861) (David) -
branches/0.11/samples/pub/soap-test.php
r2014 r2943 10 10 11 11 if(!isset($_GET['item'])) { 12 $_GET['item'] = 'nonsense';12 $_GET['item'] = 123456; 13 13 } 14 14 -
branches/0.11/samples/pub/xmlrpc-test.php
r1894 r2943 8 8 <h1>Agavi XML-RPC Test</h1> 9 9 <?php 10 $request = xmlrpc_encode_request('getItemPrice', array(' name' => 'nonsense'), array("encoding" => "utf-8", "escaping" => "markup"));10 $request = xmlrpc_encode_request('getItemPrice', array('id' => 123456), array("encoding" => "utf-8", "escaping" => "markup")); 11 11 12 12 $url = "http://localhost/~dzuelke/_projects/agavi/branches/0.11/samples/pub/xmlrpc.php";

