Subversion Repositories ALCASAR

Rev

Rev 314 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 314 Rev 315
Line 49... Line 49...
49
		$ligne=fgets($pointeur, 4096);
49
		$ligne=fgets($pointeur, 4096);
50
		if ($ligne)
50
		if ($ligne)
51
			{
51
			{
52
			if ($cols == 1) { echo "<tr>";}
52
			if ($cols == 1) { echo "<tr>";}
53
			$categorie=trim(basename($ligne));
53
			$categorie=trim(basename($ligne));
54
			echo "<td><a href='bl_categories_help.php?cat=$categorie' target='cat_help' onclick=window.open('bl_categories_help.php','cat_help','width=600,height=200,toolbar=no,scrollbars=no,resizable=yes') title='categories help page'>$categorie</a><br>";
54
			echo "<td><a href='bl_categories_help.php?cat=$categorie' target='cat_help' onclick=window.open('bl_categories_help.php','cat_help','width=600,height=150,toolbar=no,scrollbars=no,resizable=yes') title='categories help page'>$categorie</a><br>";
55
			echo "<input type='checkbox' name='chk-$categorie'";
55
			echo "<input type='checkbox' name='chk-$categorie'";
56
			// si la ligne est commentée -> categorie non selectionnée
56
			// si la ligne est commentée -> categorie non selectionnée
57
			if (preg_match('/^#/',$ligne, $r)) { echo ">";}
57
			if (preg_match('/^#/',$ligne, $r)) { echo ">";}
58
			else { echo "checked>"; }
58
			else { echo "checked>"; }
59
			echo "</td>";
59
			echo "</td>";