diff -r 6b96085291d7 -r fb7cd02b9848 web/wp-content/plugins/gigs-calendar/feedback.ajax.php --- a/web/wp-content/plugins/gigs-calendar/feedback.ajax.php Tue Jan 05 09:48:24 2010 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,98 +0,0 @@ - -
- - - $value ) { - if ( $key != 'nonce' && $key != 'message' && $key != 'action' ) { - $msg .= $key . ': ' . $value . "\n"; - } - } - - $msg .= 'Plugin Version: ' . DTC_GIGS_PLUGIN_VERSION . "\n"; - $msg .= 'Database Version: ' . DTC_GIGS_DB_VERSION . "\n"; - - $msg .= "\nMessage:\n" . $_POST['message']; - - if ( $_POST['settings'] == '1' ) { - $msg .= "\n\n\nSettings:\n" . print_r($options, true); - } - if ( wp_mail($feedbackEmail, 'Gigs Calendar - ' . $_POST['type'], $msg, 'Reply-To: ' . str_replace(array("\r", "\n"), '', $_POST['email'])) ) { - echo '{success: true}'; - } else { - echo '{success: false}'; - } -} - -?>