ソースを参照

[DOCUMENTATION] English:

- manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15861 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 年 前
コミット
f0a82001e5
1 ファイル変更6 行追加6 行削除
  1. 6 6
      documentation/manual/en/module_specs/Zend_Auth.xml

+ 6 - 6
documentation/manual/en/module_specs/Zend_Auth.xml

@@ -252,8 +252,9 @@ switch ($result->getCode()) {
                     authentication is attempted, since
                     authentication is attempted, since
                     <methodname>Zend_Auth::authenticate()</methodname> performs the automatic
                     <methodname>Zend_Auth::authenticate()</methodname> performs the automatic
                     storage of the identity.
                     storage of the identity.
+                </para>
 
 
-                    <programlisting language="php"><![CDATA[
+                <programlisting language="php"><![CDATA[
 // Save a reference to the Singleton instance of Zend_Auth
 // Save a reference to the Singleton instance of Zend_Auth
 $auth = Zend_Auth::getInstance();
 $auth = Zend_Auth::getInstance();
 
 
@@ -269,8 +270,6 @@ $auth->setStorage(new Zend_Auth_Storage_Session('someNamespace'));
 $result = $auth->authenticate($authAdapter);
 $result = $auth->authenticate($authAdapter);
 ]]></programlisting>
 ]]></programlisting>
 
 
-                </para>
-
             </example>
             </example>
 
 
         </sect3>
         </sect3>
@@ -393,7 +392,9 @@ $result = Zend_Auth::getInstance()->authenticate($authAdapter);
 
 
         <para>
         <para>
             There are two provided ways to use <classname>Zend_Auth</classname> adapters:
             There are two provided ways to use <classname>Zend_Auth</classname> adapters:
-            <orderedlist>
+        </para>
+
+        <orderedlist>
             <listitem>
             <listitem>
                 <para>
                 <para>
                     indirectly, through <methodname>Zend_Auth::authenticate()</methodname>
                     indirectly, through <methodname>Zend_Auth::authenticate()</methodname>
@@ -404,8 +405,7 @@ $result = Zend_Auth::getInstance()->authenticate($authAdapter);
                     directly, through the adapter's <methodname>authenticate()</methodname> method
                     directly, through the adapter's <methodname>authenticate()</methodname> method
                 </para>
                 </para>
             </listitem>
             </listitem>
-            </orderedlist>
-        </para>
+        </orderedlist>
 
 
         <para>
         <para>
             The following example illustrates how to use a <classname>Zend_Auth</classname> adapter
             The following example illustrates how to use a <classname>Zend_Auth</classname> adapter