MyBB Community Forums

Full Version: Php warning on some more plugins
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Php warning on some more plugins in usercp . (ougc pages current in screenshot)

how to fix those kind of warnings .

[Image: Screenshot_1399.png]
The warning is caused by there not being any categories created yet. You can resolve this by creating a page category in the plugins config module in the Admin CP.

Alternatively if you want to fix the code you can add the following just before the problematic line 848
https://github.com/Sama34/OUGC-Pages/blo...s.php#L848
	if(empty($pages_cache['categories']))
	{
		return;
	}