Changeset 1390 for feedmelinks/set-up/IM.php
- Timestamp:
- 03/05/07 18:37:28 (2 years ago)
- Files:
-
- feedmelinks/set-up/IM.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks/set-up/IM.php
r1355 r1390 23 23 if( !$im ) 24 24 return; 25 $im = urlencode( $im );26 25 $success = run_query( "UPDATE users SET im = '$im' WHERE userId = '$u'" ); 27 26 $showForm = false; … … 33 32 <h1>Success! Your Validation Code is:</h1> 34 33 <input class="copyable" name="secret" value="validate: <?= $u . ", " . get_im_validation_phrase_for_user( $u ) ?>" size="32" /> 35 <small>Paste the above text into your AIM window to finish the setup process</small>34 <small>Paste the <b><big>entire</big></b> string above into your AIM window to finish validating your account.</small> 36 35 <br /><br /><br /><br /> 37 36 (All done, you can close this window now) … … 43 42 44 43 if( $showForm ) { 44 45 # handle the weirdo's with @ signs in their names: # FIXME: test from actual klaus aim session 46 #$aim = str_replace( " ", "", $aim ); 47 $aim = urlencode( $aim ); 48 $aim = str_replace( "%40", "@", $aim ); 49 $aim = str_replace( "%2540", "@", $aim ); 50 $aim = str_replace( "+", " ", $aim ); 45 51 ?> 46 52