mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-24 16:25:00 -04:00
Corrige rafraîchissement automatique après mise-à-jour avec Persona ou formulaire
Corrige https://github.com/marienfressinaud/FreshRSS/issues/327#issuecomment-31958851
This commit is contained in:
@@ -164,6 +164,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController {
|
||||
$feedDAO = new FreshRSS_FeedDAO ();
|
||||
$entryDAO = new FreshRSS_EntryDAO ();
|
||||
|
||||
Minz_Session::_param('actualize_feeds', false);
|
||||
$id = Minz_Request::param ('id');
|
||||
$force = Minz_Request::param ('force', false);
|
||||
|
||||
|
||||
@@ -42,6 +42,3 @@ echo 'str_confirmation="', Minz_Translate::t('confirm_action'), '"', ",\n";
|
||||
|
||||
$autoActualise = Minz_Session::param('actualize_feeds', false);
|
||||
echo 'auto_actualize_feeds=', $autoActualise ? 'true' : 'false', ";\n";
|
||||
if ($autoActualise) {
|
||||
Minz_Session::_param('actualize_feeds', false);
|
||||
}
|
||||
|
||||
@@ -817,7 +817,7 @@ function printStep2 () {
|
||||
<div class="form-group">
|
||||
<label class="group-name" for="passwordPlain"><?php echo _t('password_form'); ?></label>
|
||||
<div class="group-controls">
|
||||
<input type="password" id="passwordPlain" name="passwordPlain" pattern=".{7,}" />
|
||||
<input type="password" id="passwordPlain" name="passwordPlain" pattern=".{7,}" autocomplete="off" />
|
||||
<noscript><b><?php echo _t('javascript_should_be_activated'); ?></b></noscript>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user