Cosmetic - changed the order of input data checking to match control layout.
authorNik Okuntseff <support@anuko.com>
Sun, 18 Feb 2018 16:08:49 +0000 (16:08 +0000)
committerNik Okuntseff <support@anuko.com>
Sun, 18 Feb 2018 16:08:49 +0000 (16:08 +0000)
user_edit.php

index 4150053..8308892 100644 (file)
@@ -173,9 +173,9 @@ if ($request->isPost()) {
       $err->add($i18n->getKey('error.not_equal'), $i18n->getKey('label.password'), $i18n->getKey('label.confirm_password'));
   }
   if (!ttValidEmail($cl_email, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.email'));
-  if (!ttValidFloat($cl_rate, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('form.users.default_rate'));
   // Require selection of a client for a client role.
   if ($user->isPluginEnabled('cl') && $cl_role == ROLE_CLIENT && !$cl_client_id) $err->add($i18n->getKey('error.client'));
+  if (!ttValidFloat($cl_rate, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('form.users.default_rate'));
 
   if ($err->no()) {
     $existing_user = ttUserHelper::getUserByLogin($cl_login);