]> git.andy128k.dev Git - ipf.git/commitdiff
fix namespace
authorAndrey Kutejko <andy128k@gmail.com>
Mon, 5 Jan 2015 20:15:48 +0000 (22:15 +0200)
committerAndrey Kutejko <andy128k@gmail.com>
Mon, 5 Jan 2015 20:15:48 +0000 (22:15 +0200)
ipf/auth/commands/createsuperuser.php

index fc444605872622dda5c014aa6b78adf49df4079d..fa88d93db9450db24511a665c99402e3fc06c99e 100644 (file)
@@ -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;