Index: captcha.install =================================================================== --- captcha.install (revision 30487) +++ captcha.install (working copy) @@ -112,8 +112,12 @@ } // what to do after install? - drupal_set_message($t('You can now configure the CAPTCHA module for your site.', - array('!captcha_admin' => url('admin/user/captcha'))), 'status'); + $message = $t('You can now configure the CAPTCHA module for your site.', + array('!captcha_admin' => url('admin/user/captcha'))); + if (variable_get('cache', 0) > 0) { + $message .= ' ' . $t('Note that pages containing a CAPTCHA challenge will not be cached even though page caching is turned on.', array('!performance_admin' => url('admin/settings/performance')))'; + } + drupal_set_message($message, 'status'); } /**