mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-16 12:27:20 -04:00
Link to logs in case of error when adding new feed
https://github.com/marienfressinaud/FreshRSS/issues/453
This commit is contained in:
@@ -136,7 +136,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController {
|
||||
Minz_Log::record ($e->getMessage (), Minz_Log::WARNING);
|
||||
$notif = array (
|
||||
'type' => 'bad',
|
||||
'content' => Minz_Translate::t ('internal_problem_feed')
|
||||
'content' => Minz_Translate::t ('internal_problem_feed', Minz_Url::display(array('a' => 'logs')))
|
||||
);
|
||||
Minz_Session::_param ('notification', $notif);
|
||||
} catch (Minz_FileNotExistException $e) {
|
||||
@@ -144,7 +144,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController {
|
||||
Minz_Log::record ($e->getMessage (), Minz_Log::ERROR);
|
||||
$notif = array (
|
||||
'type' => 'bad',
|
||||
'content' => Minz_Translate::t ('internal_problem_feed')
|
||||
'content' => Minz_Translate::t ('internal_problem_feed', Minz_Url::display(array('a' => 'logs')))
|
||||
);
|
||||
Minz_Session::_param ('notification', $notif);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user