Ошибка вылезла в Joomla

JuicyJose

Новичок
Всем, доброе утро. Открыл сегодня свой сайт а там вот такая ошибка:
Warning: Invalid argument supplied for foreach() in /home/datingj2/public_html/components/com_content/models/articles.php on line 483

Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in /home/datingj2/public_html/libraries/joomla/database/database/mysqli.php on line 305
Сам в php и mysql не силен. Если что-то подскажите - буду очень признателен!

P. S. Сам никуда не лез. Открыл утром сайт, а там такая беда (
Вот часть кода, где ошибку выдает:

articles.php:
PHP:
// Convert the parameter fields into objects.
		foreach ($items as &$item)
		{
			$articleParams = new JRegistry;
			$articleParams->loadString($item->attribs);
mysqli.php:
PHP:
* Get the current or query, or new JDatabaseQuery object.
	 *
	 * @param   boolean  $new  False to return the last query set, True to return a new JDatabaseQuery object.
	 *
	 * @return  mixed  The current value of the internal SQL variable or a new JDatabaseQuery object.
	 *
	 * @since   11.1
	 * @throws  DatabaseException
	 */
	function getQuery($new = false)
	{
		if ($new) {
			// Make sure we have a query class for this driver.
			if (!class_exists('JDatabaseQueryMySQL')) {
				throw new DatabaseException(JText::_('JLIB_DATABASE_ERROR_MISSING_QUERY'));
			}
			return new JDatabaseQueryMySQL($this);
		}
		else {
			return $this->sql;
		}
	}

	/**
 
Сверху