Skip to content

Commit

Permalink
Fix: public statistics errors "Warning: require_once(/classes/core/cl…
Browse files Browse the repository at this point in the history
…ass.progressbar.php) [function.require-once]: failed to open stream: No such file or directory ...\statistics_user.php on line 35

Fatal error: require_once() [function.require]: Failed opening required '/classes/core/class.progressbar.php' in ...statistics_user.php on line 35"
Thanks Carsten!

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@8999 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
maziminke committed Jul 29, 2010
1 parent ddaaa56 commit 127986b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion statistics_user.php
Expand Up @@ -32,10 +32,11 @@
if (isset($_REQUEST['homedir'])) {die('You cannot start this script directly');}


require_once($homedir.'/classes/core/class.progressbar.php');

require_once(dirname(__FILE__).'/classes/core/startup.php');
require_once(dirname(__FILE__).'/config-defaults.php');
require_once(dirname(__FILE__).'/common.php');
require_once($homedir.'/classes/core/class.progressbar.php');
require_once(dirname(__FILE__).'/classes/core/language.php');
require_once($homedir.'/statistics_function.php');

Expand Down

0 comments on commit 127986b

Please sign in to comment.