new (search) categories automatically checkt new (search) categories automatically checkt
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

new (search) categories automatically checkt

Started by racl, March 24, 2006, 09:51:16 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

racl

Hi!

i want to create some more categories. my problem is that they aren automatically checkt in the searchform. where do i have to change the code (checkted="checked") that all kind of searchposibillities are activated instantly?

thx for your help


racl

that's true for the static parts (title, caption, keywords) owner and filename is possible to change in the search.php as well. but the free choosable categories are hidden in a variable ($customs) where can i change this entries?

Nibbler


while ($row = mysql_fetch_assoc($result)){
        $name = str_replace(array('_field', '_name'), '', $row['name']);
        $customs .= <<< EOT
                <tr>
                        <td><input type="checkbox" name="$name" id="$name" class="checkbox" /><label for="$name" class="clickable_option">{$row['value']}</label></td>
                </tr>
EOT;
}


Just add in checked="checked" there

racl


pcinfoman