- Added Path variable in the config file for the LDT's donwloader script (functions.php)
- Added the /ldt_template in the res directory
- Modify default-widgets.php to open in blank all the rss link
- clean a litlle comment in searchform.php
<?php
if ( isset($_GET['s']) ) {
$search_text= utf8_decode(stripslashes($_GET['s']));
} else {
$search_text= "Rechercher";
}
?>
<div class="box">
<div>
<h6><?php _e("Search");?></h6>
<div id="search">
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
<div>
<input type="text" name="s" id="s"
value="<?php echo wp_specialchars($search_text, 1); ?>"
onfocus="clearInput('s', '<?php echo wp_specialchars($search_text, 1); ?>')"
onblur="clearInput('s', '<?php echo wp_specialchars($search_text, 1); ?>')"
/>
<input type="submit" name="envoi" value="<?php _e("Search");?>" />
<?php if (!have_posts() and isset($_GET['s'])) {
echo ("
<div id='msg' >
Il n‘y a aucun résultat sur cette requète avec le moteur de recherche interne, vous aurrez peut être
plus de chance en cherchant sur les autres sites IRI grace au formulaire ci dessous :
</div>
");
} else if (!isset($_GET['s'])) {
}
?>
</div>
</form>
</div>
</div>
<div class="cleaner"></div>
</div>