diff options
author | rvelices <rv-github@modusoptimus.com> | 2011-09-29 04:13:46 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2011-09-29 04:13:46 +0000 |
commit | 2b26a82f06f70e710881e5fe44b008e76cdc3394 (patch) | |
tree | d32e0db3cf4ec17f252380ef10dacf2549aded37 /admin/rating.php | |
parent | cf2fc7a424b07a1e60e10147f23502fb689970e2 (diff) |
bug 2440 : deleting a rate from admin was missing an include_once
git-svn-id: http://piwigo.org/svn/trunk@12255 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/rating.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/admin/rating.php b/admin/rating.php index 5d5a1971c..a500ecb7d 100644 --- a/admin/rating.php +++ b/admin/rating.php @@ -72,6 +72,7 @@ if (isset($_GET['users'])) if (isset($_GET['del'])) { + include_once(PHPWG_ROOT_PATH.'include/functions_rate.inc.php'); $del_params = urldecode( $_GET['del'] ); parse_str($del_params, $vars); if ( !is_numeric($vars['e']) or !is_numeric($vars['u']) ) |