From edffc3f9c473664ca9f105c51ecc640b104d4820 Mon Sep 17 00:00:00 2001 From: Joe Watkins Date: Sun, 21 Sep 2014 06:50:51 +0000 Subject: [PATCH] fix #67936 (change use of the word "stack" for "queue") git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@334917 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/spl/functions/spl-autoload-register.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/spl/functions/spl-autoload-register.xml b/reference/spl/functions/spl-autoload-register.xml index 8827a3406b..0a516a5c9b 100644 --- a/reference/spl/functions/spl-autoload-register.xml +++ b/reference/spl/functions/spl-autoload-register.xml @@ -14,12 +14,12 @@ boolprependfalse - Register a function with the spl provided __autoload stack. If the stack + Register a function with the spl provided __autoload queue. If the queue is not yet activated it will be activated. If your code has an existing __autoload function then - this function must be explicitly registered on the __autoload stack. This + this function must be explicitly registered on the __autoload queue. This is because spl_autoload_register will effectively replace the engine cache for the __autoload function by either spl_autoload or @@ -63,7 +63,7 @@ If true, spl_autoload_register will prepend - the autoloader on the autoload stack instead of appending it. + the autoloader on the autoload queue instead of appending it.