File size: 526B
<?php
if($_GET['act'] == 1)
{
copy('../../data/votes/vote_1/foot.php', '../../templates/foot.php');
echo'OK';
}
if($_GET['act'] == 2)
{
copy('../../data/votes/vote_2/foot.php', '../../templates/foot.php');
echo'OK';
}
if($_GET['act'] == 3)
{
chmod('../../templates', 0777);
chmod('../../data/votes/vote_1', 0777);
chmod('../../data/votes/vote_2', 0777);
chmod('../../templates/foot.php', 0666);
chmod('../../data/votes/vote_2/foot.php', 0666);
chmod('../../data/votes/vote_1/foot.php', 0666);
echo'OK';
}
?>