Issue 4956: Don't fail during installation because of a missing theme configuration

このコミットが含まれているのは:
Michael 2018-05-20 05:44:20 +00:00
コミット 9d0ed1a2af
1個のファイルの変更4行の追加0行の削除

ファイルの表示

@ -1091,6 +1091,10 @@ class App
*/
public function getCurrentTheme()
{
if ($this->mode == App::MODE_INSTALL) {
return '';
}
if (!$this->current_theme) {
$this->computeCurrentTheme();
}