I have seen that the Photo Plugin has a limit of "9999" max. Pics per User.
How can I raise this up?
Thanks upfront...
// user quota Field $userQuotaField = new TextField('userQuota'); $userQuotaField->setRequired(true); $uqValidator = new IntValidator(0, 10000); $userQuotaField->addValidator($uqValidator); $this->addElement($userQuotaField->setLabel($language->text('photo', 'user_quota')));
change value in this line:
$uqValidator = new IntValidator(0, INCREASE THIS NUMBER - 10000);