Skip to content
Snippets Groups Projects
Commit 8166584f authored by Ghislain Loas's avatar Ghislain Loas
Browse files

hotline #74120 fix failure + warning

parent 1395a020
Branches
Tags
2 merge requests!2660Master,!2604hotline #74120 fix doc type selector in search widget
Pipeline #3930 passed with stage
in 45 minutes and 30 seconds
......@@ -64,7 +64,7 @@ class ZendAfi_View_Helper_ComboCodification extends ZendAfi_View_Helper_BaseHelp
$combo = '<select id="' . $id . '" name="' . $name . '"' . $events . ' class="typeDoc">';
foreach ($items as $item) {
$selected = $item['value'] === reset($valeur_select) ? ' selected="selected"': '';
$selected = $item['value'] == reset($valeur_select) ? ' selected="selected"': '';
$combo .= '<option value="' . $item["value"] . '"' . $selected.'>' . stripSlashes($item["libelle"]) . '</option>';
}
$combo .= '</select>';
......
......@@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class StoryPlayRActivatedTestCase extends AbstractControllerTestCase {
abstract class StoryPlayRActivatedTestCase extends AbstractControllerTestCase {
protected
$_storm_default_to_volatile = true,
$_user;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment