Changeset 77

Show
Ignore:
Timestamp:
06/25/07 09:28:57 (2 years ago)
Author:
pdingle
Message:

began stubs of Captcha support - commented out for now

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-infocard/pw-config.php

    r75 r77  
    1212define ('PW_VERSION_DATE', '20June07'); 
    1313define ('PW_SELECTORTRIGGER', 'html'); 
     14define ('PW_USECAPTCHAS', false ); 
    1415define ('PW_CUSTOMDATAPATH', dirname(__FILE__) . '/' . PW_PLUGIN. '/customdata.pw.php'); 
    1516//define ('PW_CUSTOMDATAPATH', dirname(__FILE__) . '/custom/customdata.pw.php'); 
     
    1920include_once( dirname(__FILE__) . '/' . PW_PLUGIN. '/pw-claimtypes.php'); 
    2021define ('PW_DEBUG_ON', get_settings('pw_debug_on')); 
    21 define ('PW_TIMEVALIDATION_ON', true); 
     22define ('PW_TIMEVALIDATION_ON', false); 
    2223define ('PW_PATH', ABSPATH . PW_PLUGINPATH); 
    2324define ('PW_IMGPATH', PW_PATH . '/pwlib/images'); 
  • trunk/wp-infocard/wp-infocard.php

    r76 r77  
    4848add_action( 'login_form', array( $wpInfocard, 'pw_loginform_link')); 
    4949 
     50//if ( PW_USECAPTCHAS ) 
     51//      pw_admin::setupCaptcha(); 
     52 
    5053function infocard_options()  
    5154{ 
  • trunk/wp-infocard/wp/admin.pw.php

    r76 r77  
    220220        function pw_loginform_link()  
    221221        { 
     222//              if ( PW_USECAPTCHAS ) 
     223//                      display_cryptographp(); 
    222224?> 
    223225        <hr /> 
     
    424426        } 
    425427 
     428        function setupCaptcha() 
     429        { 
     430                //$current_plugins = get_option('active_plugins'); 
     431                return; 
     432        } 
    426433} // end class pw_admin 
    427434?>