PluginProbe
Passster – Password Protect Pages and Content / 4.3.16
Passster – Password Protect Pages and Content v4.3.16
4.3.16 4.3.15 4.3.14 4.3.12 4.3.13 4.3.11 4.3.10 4.3.9 4.3.8 4.3.7 4.3.6 4.3.5 trunk 3.5.4 3.5.5.2 3.5.5.8 3.5.5.9 4.0 4.1.4 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.15 All 48 releases
← All changes | inc/class-ps-migrator.php +4 -3 4.2.124.3.16 View file →
@@ -171,11 +171,12 @@
171 171 // Migrate Global Protection settings.
172 172 $options['global_protection_id'] = get_option( 'passster_global_id' );
173 173
174 174 // Also add new options to avoid missing keys on migration.
175 - $options['password_length'] = "6";
176 - $options['include_uppercase'] = false;
177 - $options['include_numbers'] = false;
175 + $options['password_length'] = "12";
176 + $options['include_uppercase'] = true;
177 + $options['include_numbers'] = true;
178 + $options['include_symbols'] = true;
178 179 $options['cookie_duration_unit'] = 'days';
179 180
180 181 return $options;
181 182 }