Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ SyntaxErrorException
AbstractPostgreSQLDriver->convertException('An exception occurred while executing \'select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title\':SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "\'[0] and w.swedenborgtype not in (\'"LINE 1: ...w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w... ^', object(PDOException))
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php
(line 169)
DBALException::wrapException(object(Driver), object(PDOException), 'An exception occurred while executing \'select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title\':SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "\'[0] and w.swedenborgtype not in (\'"LINE 1: ...w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w... ^')
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php
(line 145)
DBALException::driverExceptionDuringQuery(object(Driver), object(PDOException), 'select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title', array())
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php
(line 162)
NCBSWController->getNativeQueryResults('select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title')
in
src/NCBS/WebsiteBundle/Controller/NCBSWController.php
(line 4946)
$sSql .= " and w.swedenborgtype not in ('scientific', 'transitional')";
$sSql .= " and t.type_id = " . $this->TRANSLATION_TYPE_ID_TEXT . " and w.ispublic AND t.ispublic and t.url is not null and t.url <> '' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title";
// echo $sSql."<br>";
$aRet = array();
$aTemp = $this->getNativeQueryResults($sSql);
$nLen = count($aTemp);
foreach($aTemp as $temp)
{
$aRet[$temp['swedenborgtype']][] = $temp;
}
NCBSWController->getSwedenborgWorks(object(Request), 202, '205\'[0]')
in
src/NCBS/WebsiteBundle/Controller/ExpositionController.php
(line 152)
$nLocaleLanguageID = $this->getLanguageIDByShortCode($locale);
$nSelectedLangID = $request->query->get('l');
return $this->renderView('index/swedenborg', array(
'works' => $this->getSwedenborgWorks($request, $nLocaleLanguageID, $nSelectedLangID),
'works2' => $this->getSwedenborgWorks2($request, $nLocaleLanguageID, $nSelectedLangID),
'languages' => $this->getSwedenborgWorkLanguages($request),
'selected_language_id' => $nSelectedLangID,
'search_domain' => 'w'
));
ExpositionController->swedenborgIndexAction(object(Request))
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
(line 151)
$this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS, $event);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = \call_user_func_array($controller, $arguments);
// view
if (!$response instanceof Response) {
$event = new GetResponseForControllerResultEvent($this, $request, $type, $response);
$this->dispatcher->dispatch(KernelEvents::VIEW, $event);
HttpKernel->handleRaw(object(Request), 1)
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
(line 68)
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
$request->headers->set('X-Php-Ob-Level', ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
HttpKernel->handle(object(Request), 1, true)
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php
(line 200)
Doctrine\DBAL\Driver\ PDOException
NCBSWController->getNativeQueryResults('select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title')
in
src/NCBS/WebsiteBundle/Controller/NCBSWController.php
(line 4946)
$sSql .= " and w.swedenborgtype not in ('scientific', 'transitional')";
$sSql .= " and t.type_id = " . $this->TRANSLATION_TYPE_ID_TEXT . " and w.ispublic AND t.ispublic and t.url is not null and t.url <> '' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title";
// echo $sSql."<br>";
$aRet = array();
$aTemp = $this->getNativeQueryResults($sSql);
$nLen = count($aTemp);
foreach($aTemp as $temp)
{
$aRet[$temp['swedenborgtype']][] = $temp;
}
NCBSWController->getSwedenborgWorks(object(Request), 202, '205\'[0]')
in
src/NCBS/WebsiteBundle/Controller/ExpositionController.php
(line 152)
$nLocaleLanguageID = $this->getLanguageIDByShortCode($locale);
$nSelectedLangID = $request->query->get('l');
return $this->renderView('index/swedenborg', array(
'works' => $this->getSwedenborgWorks($request, $nLocaleLanguageID, $nSelectedLangID),
'works2' => $this->getSwedenborgWorks2($request, $nLocaleLanguageID, $nSelectedLangID),
'languages' => $this->getSwedenborgWorkLanguages($request),
'selected_language_id' => $nSelectedLangID,
'search_domain' => 'w'
));
ExpositionController->swedenborgIndexAction(object(Request))
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
(line 151)
$this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS, $event);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = \call_user_func_array($controller, $arguments);
// view
if (!$response instanceof Response) {
$event = new GetResponseForControllerResultEvent($this, $request, $type, $response);
$this->dispatcher->dispatch(KernelEvents::VIEW, $event);
HttpKernel->handleRaw(object(Request), 1)
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
(line 68)
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
$request->headers->set('X-Php-Ob-Level', ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
HttpKernel->handle(object(Request), 1, true)
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php
(line 200)
PDOException
PDOStatement->execute(null)
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php
(line 117)
NCBSWController->getNativeQueryResults('select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title')
in
src/NCBS/WebsiteBundle/Controller/NCBSWController.php
(line 4946)
$sSql .= " and w.swedenborgtype not in ('scientific', 'transitional')";
$sSql .= " and t.type_id = " . $this->TRANSLATION_TYPE_ID_TEXT . " and w.ispublic AND t.ispublic and t.url is not null and t.url <> '' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title";
// echo $sSql."<br>";
$aRet = array();
$aTemp = $this->getNativeQueryResults($sSql);
$nLen = count($aTemp);
foreach($aTemp as $temp)
{
$aRet[$temp['swedenborgtype']][] = $temp;
}
NCBSWController->getSwedenborgWorks(object(Request), 202, '205\'[0]')
in
src/NCBS/WebsiteBundle/Controller/ExpositionController.php
(line 152)
$nLocaleLanguageID = $this->getLanguageIDByShortCode($locale);
$nSelectedLangID = $request->query->get('l');
return $this->renderView('index/swedenborg', array(
'works' => $this->getSwedenborgWorks($request, $nLocaleLanguageID, $nSelectedLangID),
'works2' => $this->getSwedenborgWorks2($request, $nLocaleLanguageID, $nSelectedLangID),
'languages' => $this->getSwedenborgWorkLanguages($request),
'selected_language_id' => $nSelectedLangID,
'search_domain' => 'w'
));
ExpositionController->swedenborgIndexAction(object(Request))
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
(line 151)
$this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS, $event);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = \call_user_func_array($controller, $arguments);
// view
if (!$response instanceof Response) {
$event = new GetResponseForControllerResultEvent($this, $request, $type, $response);
$this->dispatcher->dispatch(KernelEvents::VIEW, $event);
HttpKernel->handleRaw(object(Request), 1)
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
(line 68)
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
$request->headers->set('X-Php-Ob-Level', ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
HttpKernel->handle(object(Request), 1, true)
in
vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php
(line 200)
Stack Traces 3
[3/3] SyntaxErrorException |
---|
Doctrine\DBAL\Exception\SyntaxErrorException: An exception occurred while executing 'select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205'[0] and w.swedenborgtype not in ('scientific', 'transitional') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> '' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title': SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "'[0] and w.swedenborgtype not in ('" LINE 1: ...w.swedenborgtype = wt.name and t.language_id = 205'[0] and w... ^ at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractPostgreSQLDriver.php:54 at Doctrine\DBAL\Driver\AbstractPostgreSQLDriver->convertException('An exception occurred while executing \'select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title\':SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "\'[0] and w.swedenborgtype not in (\'"LINE 1: ...w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w... ^', object(PDOException)) (vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:169) at Doctrine\DBAL\DBALException::wrapException(object(Driver), object(PDOException), 'An exception occurred while executing \'select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title\':SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "\'[0] and w.swedenborgtype not in (\'"LINE 1: ...w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w... ^') (vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:145) at Doctrine\DBAL\DBALException::driverExceptionDuringQuery(object(Driver), object(PDOException), 'select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title', array()) (vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php:162) at Doctrine\DBAL\Statement->execute() (src/NCBS/WebsiteBundle/Controller/NCBSWController.php:241) at NCBS\WebsiteBundle\Controller\NCBSWController->getNativeQueryResults('select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title') (src/NCBS/WebsiteBundle/Controller/NCBSWController.php:4946) at NCBS\WebsiteBundle\Controller\NCBSWController->getSwedenborgWorks(object(Request), 202, '205\'[0]') (src/NCBS/WebsiteBundle/Controller/ExpositionController.php:152) at NCBS\WebsiteBundle\Controller\ExpositionController->swedenborgIndexAction(object(Request)) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:151) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:68) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:200) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (web/app_dev.php:41) |
[2/3] PDOException |
---|
Doctrine\DBAL\Driver\PDOException: SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "'[0] and w.swedenborgtype not in ('" LINE 1: ...w.swedenborgtype = wt.name and t.language_id = 205'[0] and w... ^ at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119 at Doctrine\DBAL\Driver\PDOStatement->execute(null) (vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php:153) at Doctrine\DBAL\Statement->execute() (src/NCBS/WebsiteBundle/Controller/NCBSWController.php:241) at NCBS\WebsiteBundle\Controller\NCBSWController->getNativeQueryResults('select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title') (src/NCBS/WebsiteBundle/Controller/NCBSWController.php:4946) at NCBS\WebsiteBundle\Controller\NCBSWController->getSwedenborgWorks(object(Request), 202, '205\'[0]') (src/NCBS/WebsiteBundle/Controller/ExpositionController.php:152) at NCBS\WebsiteBundle\Controller\ExpositionController->swedenborgIndexAction(object(Request)) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:151) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:68) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:200) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (web/app_dev.php:41) |
[1/3] PDOException |
---|
PDOException: SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "'[0] and w.swedenborgtype not in ('" LINE 1: ...w.swedenborgtype = wt.name and t.language_id = 205'[0] and w... ^ at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117 at PDOStatement->execute(null) (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117) at Doctrine\DBAL\Driver\PDOStatement->execute(null) (vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php:153) at Doctrine\DBAL\Statement->execute() (src/NCBS/WebsiteBundle/Controller/NCBSWController.php:241) at NCBS\WebsiteBundle\Controller\NCBSWController->getNativeQueryResults('select * from (SELECT distinct on (w.id) w.id as work_id, t.id as translation_id, t.url as translation_url, t.translatedtitle AS title, t.description, case when t.language_id = 202 then 1 else 2 end as lang_order, case when t.islanguagedefault then 1 else 2 end as default_order, w.swedenborgtype, wt.ordering as type_order FROM expositiontranslation t, expositionworktype wt, expositionwork w WHERE w.swedenborgtype IS NOT NULL and t.work_id=w.id and w.swedenborgtype = wt.name and t.language_id = 205\'[0] and w.swedenborgtype not in (\'scientific\', \'transitional\') and t.type_id = 1 and w.ispublic AND t.ispublic and t.url is not null and t.url <> \'\' order by w.id, lang_order, default_order) as w2 order by w2.type_order, w2.title') (src/NCBS/WebsiteBundle/Controller/NCBSWController.php:4946) at NCBS\WebsiteBundle\Controller\NCBSWController->getSwedenborgWorks(object(Request), 202, '205\'[0]') (src/NCBS/WebsiteBundle/Controller/ExpositionController.php:152) at NCBS\WebsiteBundle\Controller\ExpositionController->swedenborgIndexAction(object(Request)) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:151) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:68) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:200) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (web/app_dev.php:41) |