Skip to content

Commit 4a877b7

Browse files
committed
Merge remote-tracking branch 'remotes/origin/master' into 1.3
2 parents 4a1130f + fcb7267 commit 4a877b7

File tree

77 files changed

+4371
-477
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+4371
-477
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
CHANGELOG for 1.3.1
2+
===================
3+
This changelog references the relevant changes (new features, changes and bugs) done in 1.3.1 versions.
4+
5+
* 1.3.1 (2014-08-14)
6+
* Magento Synchronization stabilization improvements
7+
* Fixed issue: Incorrect row count on grids.
8+
* Fixed issue: Reports and Segments crash when "Is empty" filter is added.
9+
* Fixed issue: Recent Emails dashboard widget is broken.
10+
* Fixed issue: Accounts cannot be linked to Contacts from Edit Contact page.
11+
112
CHANGELOG for 1.3.0
213
===================
314
This changelog references the relevant changes (new features, changes and bugs) done in 1.3.0 versions.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ chapter.
1212
Requirements
1313
------------
1414

15-
OroCRM requires Symfony 2.4, Doctrine 2 and PHP 5.4.4 or above.
15+
OroCRM requires Symfony 2.4, Doctrine 2 and PHP 5.4.9 or above.
1616

1717
Installation
1818
------------

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323
"require": {
2424
"php": ">=5.4.4",
25-
"oro/platform": "1.3.x-dev"
25+
"oro/platform": "1.3.*"
2626
},
2727
"minimum-stability": "dev",
2828
"prefer-stable": true,

composer.lock

+144-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/OroCRM/Bundle/AccountBundle/Resources/config/datagrid.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ datagrid:
2222
join: Oro\Bundle\NavigationBundle\Entity\NavigationHistoryItem
2323
alias: history
2424
conditionType: WITH
25-
condition: "a.id = substring(history.url, locate('/', history.url, locate('/account/', history.url) + 9) + 1)"
25+
condition: "CONCAT(a.id, '') = substring(history.url, locate('/', history.url, locate('/account/', history.url) + 9) + 1)"
2626
where:
2727
and:
2828
- locate('/account/', history.url) <> 0

0 commit comments

Comments
 (0)