Parcourir la source

Docs: escape single quote in a string properly for a PHP example

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20606 44c647ce-9c0f-0410-b52a-842ac1e357ba
padraic il y a 16 ans
Parent
commit
8e782d7518

+ 1 - 1
documentation/manual/en/module_specs/Zend_Oauth-GettingStarted.xml

@@ -162,7 +162,7 @@ $config = array(
     'consumerSecret' => 'tFB0fyWLSMf74lkEu9FTyoHXcazOWpbrAjTCCK48A'
 );
 
-$statusMessage = 'I'm posting to Twitter using Zend_Oauth!';
+$statusMessage = 'I\'m posting to Twitter using Zend_Oauth!';
 
 $token = unserialize($_SESSION['TWITTER_ACCESS_TOKEN']);
 $client = $token->getHttpClient($configuration);