I found the problem when trying to modify the user when the Quota is ON.

 

File user.c

------------------------------------------------------------ Original Lines

#ifdef MODIFY_QUOTA

if (AdminType == DOMAIN_ADMIN) { send_template( "mod_user_new.html" ); }

else { send_template( "mod_user.html" ); }

#else

send_template( "mod_user_noquota.html" );

#endif

 

------------------------------------------------------------ Fixed Lines

 

#ifdef MODIFY_QUOTA

if (AdminType == DOMAIN_ADMIN) { send_template( "mod_user_quota.html" ); }

else { send_template( "mod_user_noquota.html" ); }

#else

send_template( "mod_user_noquota.html" );

#endif

 

 

 

Reply via email to