Changeset 28
- Timestamp:
- 12/29/2004 08:00:32 PM (21 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
bb-includes/registration-functions.php (modified) (1 diff)
-
bb-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-includes/registration-functions.php
r25 r28 35 35 36 36 function bb_random_pass( $length = 6) { 37 mt_srand( microtime() );38 37 $number = mt_rand(1, 15); 39 38 $string = md5( uniqid( microtime() ) ); -
trunk/bb-settings.php
r27 r28 1 1 <?php 2 2 3 if ( !(phpversion() >= '4. 1') )4 die( 'Your server is running PHP version ' . phpversion() . ' but bbPress requires at least 4. 1' );3 if ( !(phpversion() >= '4.2') ) 4 die( 'Your server is running PHP version ' . phpversion() . ' but bbPress requires at least 4.2' ); 5 5 6 6 if ( !extension_loaded('mysql') )
Note: See TracChangeset
for help on using the changeset viewer.