equal
deleted
inserted
replaced
138 // } |
138 // } |
139 |
139 |
140 // You probably don't want to change the block size because it will cause the Javascript test vectors to fail. Changing it doesn't |
140 // You probably don't want to change the block size because it will cause the Javascript test vectors to fail. Changing it doesn't |
141 // significantly increase encryption strength either. |
141 // significantly increase encryption strength either. |
142 define('AES_BLOCKSIZE', 128); |
142 define('AES_BLOCKSIZE', 128); |
|
143 |
|
144 // Our list of tables included in Enano |
|
145 $system_table_list = Array( |
|
146 'categories', |
|
147 'comments', |
|
148 'config', |
|
149 'logs', |
|
150 'page_text', |
|
151 'session_keys', |
|
152 'pages', |
|
153 'users', |
|
154 'users_extra', |
|
155 'themes', |
|
156 'buddies', |
|
157 'banlist', |
|
158 'files', |
|
159 'privmsgs', |
|
160 'sidebar', |
|
161 'hits', |
|
162 'groups', |
|
163 'group_members', |
|
164 'acl', |
|
165 'page_groups', |
|
166 'page_group_members', |
|
167 'tags', |
|
168 'language', |
|
169 'language_strings', |
|
170 'lockout', |
|
171 'search_index' |
|
172 ); |
|
173 |
|
174 if ( defined('table_prefix') ) |
|
175 { |
|
176 foreach ( $system_table_list as $i => $_ ) |
|
177 { |
|
178 $system_table_list[$i] = table_prefix . $system_table_list[$i]; |
|
179 } |
|
180 } |
143 |
181 |
144 /* |
182 /* |
145 * MIMETYPES |
183 * MIMETYPES |
146 * |
184 * |
147 * This array defines the 166 known MIME types used by the Enano file-extension filter. Whether extensions are allowed or not is |
185 * This array defines the 166 known MIME types used by the Enano file-extension filter. Whether extensions are allowed or not is |