From afa359bc226ca2a29b67bac0e5fefabdf4c4ca9d Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Mon, 5 Jan 2015 22:15:48 +0200 Subject: [PATCH] fix namespace --- ipf/auth/commands/createsuperuser.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ipf/auth/commands/createsuperuser.php b/ipf/auth/commands/createsuperuser.php index fc44460..fa88d93 100644 --- a/ipf/auth/commands/createsuperuser.php +++ b/ipf/auth/commands/createsuperuser.php @@ -11,9 +11,9 @@ class CreateSuperUser { print "Create superuser\n"; - $username = IPF_Shell::ask(' Username: '); - $password = IPF_Shell::ask(' Password: '); - $email = IPF_Shell::ask(' E-mail: '); + $username = \IPF_Shell::ask(' Username: '); + $password = \IPF_Shell::ask(' Password: '); + $email = \IPF_Shell::ask(' E-mail: '); $su = \PFF\Container::auth()->createUser(); $su->username = $username; -- 2.49.0