1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-10-05 19:31:02 +00:00

Merge pull request #8291 from wallabag/hide-info-error-prod

Hide sensitive information in production
This commit is contained in:
Jérémy Benoist 2025-10-02 10:32:21 +02:00 committed by GitHub
commit a3e48d3f8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 6 deletions

View file

@ -15,10 +15,6 @@
<div class="card-content">
<div class="row">
<h5>{{ status_code }}: {{ status_text }}</h5>
<p>{{ exception.message }}</p>
{# {% for trace in exception.trace %}
<p>{{ trace.class }} - {{ trace.type }} - {{ trace.file }} - {{ trace.line }}</p>
{% endfor %} #}
</div>
</div>
</div>

View file

@ -1131,7 +1131,7 @@ class ConfigControllerTest extends WallabagTestCase
$this->assertSame(400, $client->getResponse()->getStatusCode());
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
$this->assertStringContainsString('Bad CSRF token.', $body[0]);
$this->assertStringContainsString('400: Bad Request', $body[0]);
}
public function testChangeLocaleWithReferer()

View file

@ -732,7 +732,7 @@ class EntryControllerTest extends WallabagTestCase
$this->assertSame(400, $client->getResponse()->getStatusCode());
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
$this->assertStringContainsString('Bad CSRF token.', $body[0]);
$this->assertStringContainsString('400: Bad Request', $body[0]);
}
/**