[php] function chmod_action($chmod = 0664)
{
for ($i = 0; $i < count($this->action); $i++)
{
if ($this->action[$i]['action'] == 'OPEN')
{
$this->chmoded_files[$this->action[$i]['code']] = (@chmod($this->action[$i]['code'], $chmod)) ? TRUE : FALSE;
}
}
}[/php]
[php]<?php
function chmod_action($chmod = 0664)
{
for ($i = 0; $i < count($this->action); $i++)
{
if ($this->action[$i]['action'] == 'OPEN')
{
$this->chmoded_files[$this->action[$i]['code']] = (@chmod($this->action[$i]['code'], $chmod)) ? TRUE : FALSE;
}
}
}
?>[/php]
Dommage par contre aussi qu'il faille rajouter des <?php ?>, ca qu'il aurait fallu gérer c'est les ajouter s'il y en a pas le temps du hillight puis les supprimer

Mais bon c'est juste si tu as le temps
