Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zikkuratvk committed Sep 13, 2018
1 parent eb7a197 commit 5ec01bc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 21 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<project name="contentcart" default="dist" basedir=".">

<property name="VERSION" value="1.1.0"/>
<property name="VERSION" value="1.1.1"/>

<tstamp>
<format property="DATE" pattern="%d.%m.%Y" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
; Joomla! Project
; Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

PLG_CONTENT_CONTENTCART="Content - Cart"
PLG_CONTENT_CONTENTCART="Content - Cart"
PLG_CONTENTCART_DESC="Adding a cart for joomla content."
CONTENTCART_MENU="Menu item to cart"
CONTENTCART_MENU_DESC="Menu item to article for cart"
Expand Down Expand Up @@ -62,3 +57,5 @@ CONTENTCART_ADDED="This product has been added to the cart."
CONTENTCART_CLIENT_DATA = "To order, fill in the fields:"
CONTENTCART_ENABLE_CSS = "Enable CSS"
CONTENTCART_ENABLE_CSS_DESC="If you do not want to use our styles to expand the recycle bin, then you can disable them."

CONTENTCART_ORDER_INFO="Order info"
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
; Joomla! Project
; Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

PLG_CONTENT_CONTENTCART="Контент - Корзина"
PLG_CONTENT_CONTENTCART="Контент - Корзина"
PLG_CONTENTCART_DESC="Добавляет корзину материалам Joomla с возможностью отправки заказа на E-mail и сохранения заказа в виде материала в выбранной категории."
CONTENTCART_MENU="Пункт меню на корзину"
CONTENTCART_MENU_DESC="Пункт меню на материал, в котором выводить корзину. Заполнять, если нужен статический адрес корзины."
Expand Down Expand Up @@ -62,3 +57,5 @@ CONTENTCART_ADDED="Товар добавлен в корзину."
CONTENTCART_CLIENT_DATA = "Для заказа заполните поля:"
CONTENTCART_ENABLE_CSS = "Подключить CSS"
CONTENTCART_ENABLE_CSS_DESC="Если вы не хотите использовать наши стили для расширения корзины, то вы можете отключить их."

CONTENTCART_ORDER_INFO = "Информация о заказе"
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
; Joomla! Project
; Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

PLG_CONTENT_CONTENTCART="Контент - Корзина"
PLG_CONTENT_CONTENTCART="Контент - Корзина"
PLG_CONTENTCART_DESC="Добавляет корзину материалам Joomla с возможностью отправки заказа на E-mail."
COM_PLUGINS_CLIENT_INFO_FIELDSET_LABEL="Информация о клиенте"
4 changes: 2 additions & 2 deletions plg_contentcart/tmpl/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@

// Check to make sure our data is valid, raise notice if it's not.
if (!$article->check()) {
JError::raiseNotice(500, $article->getError());
JFactory::getApplication()->enqueueMessage();
return FALSE;
}

// Now store the article, raise notice if it doesn't get stored.
if (!$article->store(TRUE)) {
JError::raiseNotice(500, $article->getError());
JFactory::getApplication()->enqueueMessage();
return FALSE;
}
}
Expand Down

0 comments on commit 5ec01bc

Please sign in to comment.