mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fixing class load order in vendors() and uses()
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3446 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
a4dbb38d78
commit
c40e3e355c
1 changed files with 2 additions and 2 deletions
|
@ -455,7 +455,7 @@
|
|||
* @uses LIBS
|
||||
*/
|
||||
function uses() {
|
||||
$args = array_reverse(func_get_args());
|
||||
$args = func_get_args();
|
||||
$c = func_num_args();
|
||||
|
||||
for ($i = 0; $i < $c; $i++) {
|
||||
|
@ -469,7 +469,7 @@
|
|||
*
|
||||
*/
|
||||
function vendor($name) {
|
||||
$args = array_reverse(func_get_args());
|
||||
$args = func_get_args();
|
||||
$c = func_num_args();
|
||||
|
||||
for ($i = 0; $i < $c; $i++) {
|
||||
|
|
Loading…
Reference in a new issue