# TODO Hi! Thank you for your interest in contributing, please refer to [DOCUMENTATION/DEVELOPERS](https://notabug.org/diogo/gnu-social/src/nightly/DOCUMENTATION/DEVELOPERS) to learn how you can contribute. ## Pending ### [Core] - Improve Cronish - Run session garbage collection - Cleanup Email Registration - [Security] Review confirmation codes ``` my guess is that the author intent was that the admin wouldn't have to verify his account, but has misread the User::register docblock [XRevan86] https://notabug.org/diogo/gnu-social/src/nightly/plugins/EmailRegistration/EmailRegistrationPlugin.php#L114 [XRevan86] https://notabug.org/diogo/gnu-social/src/nightly/classes/Confirm_address.php#L52-L68 [XRevan86] Here's why 13 symbols [XRevan86] https://notabug.org/diogo/gnu-social/src/nightly/classes/User.php#L343-L349 I wonder why parts of the code reinvent the wheel. [XRevan86] $result = Confirm_address::saveNew($user->id, $email, 'email'); [XRevan86] I think it can be replaced with that. [XRevan86] https://notabug.org/diogo/gnu-social/src/nightly/actions/emailsettings.php#L357-L364 [XRevan86] https://notabug.org/diogo/gnu-social/src/nightly/actions/imsettings.php#L316-L325 [XRevan86] The last one is a bit different, as it's not email. But I think it still applies. [XRevan86] diogo: Maybe saveNew can be extended to accept variable bitsize (or better charsize). [XRevan86] https://notabug.org/diogo/gnu-social/src/nightly/actions/smssettings.php#L320-L328 then this also can be altered [XRevan86] but with keeping the original 40 bitsize ``` - [Database] Move from Pear DB to [PDO_DataObject](https://github.com/roojs/PDO_DataObject) There are more pending tasks/ideas to implement in this [repo's issues](https://notabug.org/diogo/gnu-social/issues).