Skip to content

Commit

Permalink
v1.2.1
Browse files Browse the repository at this point in the history
- Исправлена ошибка: `Parse error: syntax error, unexpected ''_''
(T_CONSTANT_ENCAPSED_STRING) `
  • Loading branch information
pafnuty committed Jan 10, 2015
1 parent d81cf38 commit 3eedc27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload/engine/ajax/full-story.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
google+: http://gplus.to/pafnuty
email: pafnuty10@gmail.com
-----------------------------------------------------------------------------
Версия: 1.2 от 10.01.2015
Версия: 1.2.1 от 10.01.2015
=============================================================================
*/

Expand Down Expand Up @@ -192,7 +192,7 @@
// Конфиг модуля
$afsCfg = array(
'template' => !empty($_GET['template']) ? $_GET['template'] : 'ajax/fullstory',
'cachePrefix' => !empty($arConf['cachePrefix']) ? $arConf['cachePrefix'] '_' . (int) $_GET['newsId'] : 'full_' . (int) $_GET['newsId'],
'cachePrefix' => !empty($arConf['cachePrefix']) ? $arConf['cachePrefix'] . '_' . (int) $_GET['newsId'] : 'full_' . (int) $_GET['newsId'],
'newsId' => ((int) $_GET['newsId'] > 0) ? (int) $_GET['newsId'] : '0',
'fields' => $queryFields,
);
Expand Down

0 comments on commit 3eedc27

Please sign in to comment.