Skip to content

Commit 0ae30a9

Browse files
committed
Merge branch '4.4-dev' into upmerge
2 parents 2535bd2 + e5eb843 commit 0ae30a9

File tree

47 files changed

+2060
-934
lines changed

Some content is hidden

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

47 files changed

+2060
-934
lines changed

administrator/components/com_newsfeeds/src/Table/NewsfeedTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public function check()
118118
$this->metadesc = StringHelper::str_ireplace($bad_characters, '', $this->metadesc);
119119
}
120120

121-
if (is_null($this->hits)) {
121+
if (!$this->hits) {
122122
$this->hits = 0;
123123
}
124124

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"joomla/uri": "~3.0.x-dev",
6868
"joomla/utilities": "~3.0.x-dev",
6969
"algo26-matthias/idna-convert": "^3.1.0",
70-
"defuse/php-encryption": "^2.3.1",
70+
"defuse/php-encryption": "^2.4.0",
7171
"doctrine/inflector": "^1.4.4",
7272
"fig/link-util": "^1.2.0",
7373
"google/recaptcha": "^1.3.0",

composer.lock

Lines changed: 73 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libraries/src/Feed/FeedLink.php

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,38 @@ class FeedLink
6868
*/
6969
public $length;
7070

71+
/**
72+
* The link of the image.
73+
*
74+
* @var integer
75+
* @since __DEPLOY_VERSION__
76+
*/
77+
public $link;
78+
79+
/**
80+
* The description of the image.
81+
*
82+
* @var integer
83+
* @since __DEPLOY_VERSION__
84+
*/
85+
public $description;
86+
87+
/**
88+
* The height of the image.
89+
*
90+
* @var integer
91+
* @since __DEPLOY_VERSION__
92+
*/
93+
public $height;
94+
95+
/**
96+
* The width of the image.
97+
*
98+
* @var integer
99+
* @since __DEPLOY_VERSION__
100+
*/
101+
public $width;
102+
71103
/**
72104
* Constructor.
73105
*

libraries/src/String/PunycodeHelper.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,11 @@ public static function urlToUTF8($uri)
195195
*/
196196
public static function emailToPunycode($email)
197197
{
198+
if ($email === null) {
199+
@trigger_error(sprintf('Passing null value is deprecated in %s and will throw an exception in 6.0.', __METHOD__), E_USER_DEPRECATED);
200+
return '';
201+
}
202+
198203
$explodedAddress = explode('@', $email);
199204

200205
// Not addressing UTF-8 user names

0 commit comments

Comments
 (0)