Use '' rather than 'a' for HTTP 204 response body.
parent
a069734c04
commit
5a6d0c284e
|
@ -1127,7 +1127,7 @@ function system_cron_page() {
|
||||||
drupal_cron_run();
|
drupal_cron_run();
|
||||||
|
|
||||||
// HTTP 204 is "No content", meaning "I did what you asked and we're done."
|
// HTTP 204 is "No content", meaning "I did what you asked and we're done."
|
||||||
return new Response('a', 204);
|
return new Response('', 204);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue