mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
2009-02-23 Esteban Sanchez <estebans@artica.es>
* images/pixel_black.png: Added to repository. * include/functions_reporting.php: Fixed in_array() parameter order. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1472 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e33f20f460
commit
a6d299dcf7
@ -1,3 +1,10 @@
|
|||||||
|
2009-02-23 Esteban Sanchez <estebans@artica.es>
|
||||||
|
|
||||||
|
* images/pixel_black.png: Added to
|
||||||
|
repository.
|
||||||
|
|
||||||
|
* include/functions_reporting.php: Fixed in_array() parameter order.
|
||||||
|
|
||||||
2009-02-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
2009-02-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||||
|
|
||||||
* pandoradb_migrate_20_to_21.sql, pandoradb.sql: Fixed going up/down
|
* pandoradb_migrate_20_to_21.sql, pandoradb.sql: Fixed going up/down
|
||||||
|
BIN
pandora_console/images/pixel_black.png
Normal file
BIN
pandora_console/images/pixel_black.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 180 B |
@ -143,7 +143,7 @@ function get_group_stats ($id_group) {
|
|||||||
$cur_time = get_system_time ();
|
$cur_time = get_system_time ();
|
||||||
|
|
||||||
$groups = array_keys (get_user_groups ());
|
$groups = array_keys (get_user_groups ());
|
||||||
if ($id_group > 0 && in_array ($groups, $id_group)) {
|
if ($id_group > 0 && in_array ($id_group, $groups)) {
|
||||||
//If a group is selected, and we have permissions to it then we don't need to look for them
|
//If a group is selected, and we have permissions to it then we don't need to look for them
|
||||||
$groups = array ();
|
$groups = array ();
|
||||||
$groups[0] = $id_group;
|
$groups[0] = $id_group;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user