Navigation entre la gestion des répertoires protégé et le browser

This commit is contained in:
Alan Garcia 2013-04-18 14:54:58 +00:00
parent 78c9d1494b
commit 2dc053e569
3 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ for($i=0;$i<count($r);$i++){
<table class="tedit"> <table class="tedit">
<tr> <tr>
<th><input type="hidden" name="dir" value="<?php echo $dir ?>" /><?php __("Folder"); ?></th> <th><input type="hidden" name="dir" value="<?php echo $dir ?>" /><?php __("Folder"); ?></th>
<td><code><?php echo $dir; ?></code></td> <td><?php echo '<a href="bro_main.php?R='.urlencode($dir).'">'.htmlspecialchars($dir).'</a>'; ?></td>
</tr> </tr>
<tr> <tr>
<th><label for="user"><?php __("Username"); ?></label></th> <th><label for="user"><?php __("Username"); ?></label></th>

View File

@ -79,7 +79,7 @@ for($i=0;$i<count($r);$i++){
<td> <td>
<div class="ina"><a href="hta_edit.php?dir=<?php echo $r[$i]?>"><img src="icon/encrypted.png" alt="<?php __("Edit login and passwords"); ?>" /><?php __("Edit login and passwords"); ?></a></div> <div class="ina"><a href="hta_edit.php?dir=<?php echo $r[$i]?>"><img src="icon/encrypted.png" alt="<?php __("Edit login and passwords"); ?>" /><?php __("Edit login and passwords"); ?></a></div>
</td> </td>
<td><code><?php echo "$r[$i]"?></code></td> <td><?php echo '<a href="bro_main.php?R='.urlencode($r[$i]).'">'.htmlspecialchars($r[$i]).'</a>'; ?></td>
</tr> </tr>
<?php <?php
} }

View File

@ -129,7 +129,7 @@ class m_hta {
$pattern="/^".preg_quote(ALTERNC_HTML,"/")."\/.\/[^\/]*\/(.*)\/\.htpasswd/"; $pattern="/^".preg_quote(ALTERNC_HTML,"/")."\/.\/[^\/]*\/(.*)\/\.htpasswd/";
for($i=0;$i<count($sortie);$i++){ for($i=0;$i<count($sortie);$i++){
preg_match($pattern,$sortie[$i],$matches); preg_match($pattern,$sortie[$i],$matches);
$tmpm=isset($matches[1])?$matches[1]:''; $tmpm=isset($matches[1])?'/'.$matches[1]:'';
$r[$i]=$tmpm."/"; $r[$i]=$tmpm."/";
} }
return $r; return $r;