diff --git a/bridges/DiarioDoAlentejoBridge.php b/bridges/DiarioDoAlentejoBridge.php
index 9b82b49f..0bd0f1d4 100644
--- a/bridges/DiarioDoAlentejoBridge.php
+++ b/bridges/DiarioDoAlentejoBridge.php
@@ -47,7 +47,7 @@ class DiarioDoAlentejoBridge extends BridgeAbstract
}, self::PT_MONTH_NAMES),
array_map(function ($num) {
return sprintf('-%02d-', $num);
- }, range(1, sizeof(self::PT_MONTH_NAMES))),
+ }, range(1, count(self::PT_MONTH_NAMES))),
$element->find('span.date', 0)->innertext
);
diff --git a/bridges/GameBananaBridge.php b/bridges/GameBananaBridge.php
index 88b19ef0..0f04f56b 100644
--- a/bridges/GameBananaBridge.php
+++ b/bridges/GameBananaBridge.php
@@ -83,7 +83,7 @@ class GameBananaBridge extends BridgeAbstract
}
// Get updates from element[8], if applicable
- if ($this->getInput('updates') && sizeof($element[8]) > 0) {
+ if ($this->getInput('updates') && count($element[8]) > 0) {
$update = $element[8][0];
$item['content'] .= '
Update: ' . $update['_sTitle'];
if ($update['_sText'] != '') {
diff --git a/bridges/ItakuBridge.php b/bridges/ItakuBridge.php
index 0577752c..4f414574 100644
--- a/bridges/ItakuBridge.php
+++ b/bridges/ItakuBridge.php
@@ -347,17 +347,17 @@ class ItakuBridge extends BridgeAbstract
$url = self::URI . "/api/galleries/images/?by_following=false&date_range={$opt['range']}&ordering={$opt['order']}&is_video={$opt['video_only']}";
$url .= "&text={$opt['text']}&visibility=PUBLIC&visibility=PROFILE_ONLY&page=1&page_size=30&format=json";
- if (sizeof($opt['optional_tags']) > 0) {
+ if (count($opt['optional_tags']) > 0) {
foreach ($opt['optional_tags'] as $tag) {
$url .= "&optional_tags=$tag";
}
}
- if (sizeof($opt['negative_tags']) > 0) {
+ if (count($opt['negative_tags']) > 0) {
foreach ($opt['negative_tags'] as $tag) {
$url .= "&negative_tags=$tag";
}
}
- if (sizeof($opt['required_tags']) > 0) {
+ if (count($opt['required_tags']) > 0) {
foreach ($opt['required_tags'] as $tag) {
$url .= "&required_tags=$tag";
}
@@ -381,17 +381,17 @@ class ItakuBridge extends BridgeAbstract
$url = self::URI . "/api/posts/?by_following=false&date_range={$opt['range']}&ordering={$opt['order']}";
$url .= '&visibility=PUBLIC&visibility=PROFILE_ONLY&page=1&page_size=30&format=json';
- if (sizeof($opt['optional_tags']) > 0) {
+ if (count($opt['optional_tags']) > 0) {
foreach ($opt['optional_tags'] as $tag) {
$url .= "&optional_tags=$tag";
}
}
- if (sizeof($opt['negative_tags']) > 0) {
+ if (count($opt['negative_tags']) > 0) {
foreach ($opt['negative_tags'] as $tag) {
$url .= "&negative_tags=$tag";
}
}
- if (sizeof($opt['required_tags']) > 0) {
+ if (count($opt['required_tags']) > 0) {
foreach ($opt['required_tags'] as $tag) {
$url .= "&required_tags=$tag";
}
@@ -446,7 +446,7 @@ class ItakuBridge extends BridgeAbstract
private function getPost($id, array $metadata = null)
{
- if (isset($metadata) && sizeof($metadata['gallery_images']) < $metadata['num_images']) {
+ if (isset($metadata) && count($metadata['gallery_images']) < $metadata['num_images']) {
$metadata = null; //force re-fetch of metadata
}
$uri = self::URI . '/posts/' . $id;
@@ -457,7 +457,7 @@ class ItakuBridge extends BridgeAbstract
$content_str = nl2br($data['content']);
$content = "
{$content_str}
{$content_str}
{$content_str}
Attachments: