instead of overriding individual keywords,you can add a keyword to all or remove it from all

git-svn-id: http://piwigo.org/svn/trunk@39 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
z0rglub 2003-07-26 09:28:58 +00:00
parent 963e1ef714
commit 5649720e23

View file

@ -68,10 +68,7 @@ function array_remove( $array, $value )
{
$output = array();
foreach ( $array as $v ) {
if ( $v != $value )
{
array_push( $output, $v );
}
if ( $v != $value ) array_push( $output, $v );
}
return $output;
}