Просмотр исходного кода

[MANUAL] English:

- manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19426 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 лет назад
Родитель
Сommit
876d20310c

+ 1 - 1
documentation/manual/en/module_specs/Zend_Mail-MultipleEmails.xml

@@ -37,7 +37,7 @@ for ($i = 0; $i < 5; $i++) {
     <para>
         If you wish to have a separate connection for each mail
         delivery, you will need to create and destroy your transport before and
-        after each <function>send()</function> method is called. Or alternatively,
+        after each <methodname>send()</methodname> method is called. Or alternatively,
         you can manipulate the connection between each delivery by accessing the
         transport's protocol object.
     </para>

+ 2 - 2
documentation/manual/en/module_specs/Zend_Translate-Adapters.xml

@@ -201,8 +201,8 @@
                 <title>Regression in PHP 5.3</title>
 
                 <para>
-                    Prior to <acronym>PHP</acronym> 5.3, <function>parse_ini_file()</function> and
-                    <function>parse_ini_string()</function> handled non-ASCII characters
+                    Prior to <acronym>PHP</acronym> 5.3, <methodname>parse_ini_file()</methodname>
+                    and <methodname>parse_ini_string()</methodname> handled non-ASCII characters
                     within <acronym>INI</acronym> option keys worked without an issue. However, starting with <acronym>PHP</acronym> 5.3,
                     any such keys will now be silently dropped in the returned array from either
                     function. If you had keys utilizing UTF-8 or Latin-1 characters, you may find

+ 1 - 1
documentation/manual/en/ref/performance-classloading.xml

@@ -225,7 +225,7 @@ set_include_path(implode(PATH_SEPARATOR, $paths));
                 through each <acronym>PHP</acronym> file and tells it to replace each instance of
                 'require_once' with '// require_once', effectively commenting
                 out each such statement. (It selectively keeps
-                <function>require_once</function> calls within
+                <methodname>require_once()</methodname> calls within
                 <classname>Zend_Application</classname> and
                 <classname>Zend_Loader_Autoloader</classname>, as these classes will fail without
                 them.)