This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // generate user account data | |
| $ldap_user_row = array( | |
| 'username' => $username, | |
| 'user_password' => phpbb_hash($password), | |
| 'user_email' => (!empty($config['ldap_email'])) ? utf8_htmlspecialchars($ldap_result[0][htmlspecialchars_decode($config['ldap_email'])][0]) : '', | |
| 'group_id' => (int) $row['group_id'], | |
| 'user_type' => USER_NORMAL, | |
| 'user_ip' => $user->ip, | |
| 'user_new' => ($config['new_member_post_limit']) ? 1 : 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *Add pagination of items to categories/view | |
| *Add pagination of items to rooms/view | |
| *Room printouts with QR codes | |
| *Tooltips or help page to explain fields | |
| *Advanced search | |
| **Search through attributes, files, comments and verifications | |
| *Grid view for categories | |
| *CSV export system | |
| *Thumbnails for uploaded files | |
| *AJAXify things like adding comments, files, verifications, etc |
NewerOlder