Alexandre Alapetite 11 years ago
parent 0c6142dad2
commit c9c068115d
  1. 4
      lib/lib_rss.php
  2. 2
      public/install.php

@ -3,7 +3,7 @@ if (!function_exists('json_decode')) {
require_once('JSON.php');
function json_decode($var) {
$JSON = new Services_JSON;
return $JSON->decode($var);
return (array)($JSON->decode($var));
}
}
@ -11,7 +11,7 @@ if (!function_exists('json_encode')) {
require_once('JSON.php');
function json_encode($var) {
$JSON = new Services_JSON;
return $JSON->encode($var);
return $JSON->encodeUnsafe($var);
}
}

@ -599,7 +599,7 @@ function printStep3 () {
<div class="form-group">
<label class="group-name" for="base"><?php echo _t ('bdd'); ?></label>
<div class="group-controls">
<input type="text" id="base" name="base" maxlength="64" value="<?php echo isset ($_SESSION['bd_name']) ? $_SESSION['bd_name'] : ''; ?>" placeholder="<?php echo _t ('freshrss'); ?>" />
<input type="text" id="base" name="base" maxlength="64" value="<?php echo isset ($_SESSION['bd_name']) ? $_SESSION['bd_name'] : ''; ?>" placeholder="freshrss" />
</div>
</div>

Loading…
Cancel
Save