View source for Re: Не отображается панель администрирования

**Admin panel  shows only a blank page after login.** Affects WackoWiki version **6.0.24** and **6.0.25**.

Turning PHP error reporting in ##constants.php## on.
%%
const PHP_ERROR_REPORTING			= 6;
%%
Call ##admin.php## again and check ##php_error_log## if something shows up.

With 6.0.25, it shows a 500 error.
%% PHP Parse error:  syntax error, unexpected variable "$news_structure", expecting ":" or ";" in /wacko/admin/module/config_pages.php on line 193 %%

PATCH
%%(hl diff)
diff --git a/wacko/admin/module/config_pages.php b/wacko/admin/module/config_pages.php
index 235e4d7..efe9c2f 100644
--- a/wacko/admin/module/config_pages.php
+++ b/wacko/admin/module/config_pages.php
@@ -189,7 +189,7 @@
 						case 'Y/W/':
 							$news_structure = date('Y/') . date('W/');
 							break;
-						default
+						default:
 							$news_structure = '';
 					}
%%
**All files were updated.** Please ((/Download download the new files)) or pull the changes.

Thanks for reporting.