Use '' rather than 'a' for HTTP 204 response body.

8.0.x
Niklas Fiekas 2012-05-17 23:07:46 +02:00 committed by Larry Garfield
parent a069734c04
commit 5a6d0c284e
1 changed files with 1 additions and 1 deletions

View File

@ -1127,7 +1127,7 @@ function system_cron_page() {
drupal_cron_run();
// HTTP 204 is "No content", meaning "I did what you asked and we're done."
return new Response('a', 204);
return new Response('', 204);
}
/**