/usr/share/pluxml/update/update_4.2.php is in pluxml 5.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <?php
/**
* Classe de mise a jour pour PluXml version 4.2
*
* @package PLX
* @author Stephane F
**/
class update_4_2 extends plxUpdate{
function step1() {
echo L_UPDATE_UPDATE_PARAMETERS_FILE."<br />";
$new_parameters = array(
'clef' => null,
'miniatures_l' => '200',
'miniatures_h' => '100',
'tri_coms' => 'asc',
'style_mobile' => 'mobile.defaut'
);
$this->updateParameters($new_parameters);
return true; # pas d'erreurs
}
}
?>
|