Sfoglia il codice sorgente

Use short for of substr to not need strlen()

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
tags/v14.0.0beta1
Morris Jobke 6 anni fa
parent
commit
e6efa755c9
Nessun account collegato all'indirizzo email del committer

+ 1
- 1
apps/files_versions/lib/Storage.php Vedi File

@@ -167,7 +167,7 @@ class Storage {
// to get the right target
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if ($ext === 'part') {
$filename = substr($filename, 0, strlen($filename) - 5);
$filename = substr($filename, 0, -5);
}

// we only handle existing files

+ 1
- 1
lib/private/DB/Adapter.php Vedi File

@@ -108,7 +108,7 @@ class Adapter {
$query .= ' = ? AND ';
}
}
$query = substr($query, 0, strlen($query) - 5);
$query = substr($query, 0, -5);
$query .= ' HAVING COUNT(*) = 0';

return $this->conn->executeUpdate($query, $inserts);

+ 1
- 1
lib/private/DB/AdapterSqlite.php Vedi File

@@ -79,7 +79,7 @@ class AdapterSqlite extends Adapter {
$query .= ' = ? AND ';
}
}
$query = substr($query, 0, strlen($query) - 5);
$query = substr($query, 0, -5);
$query .= ')';

return $this->conn->executeUpdate($query, $inserts);

+ 1
- 1
lib/private/legacy/template.php Vedi File

@@ -132,7 +132,7 @@ class OC_Template extends \OC\Template\Base {
foreach(array_reverse($coreDependencies['vendor']) as $vendorLibrary) {
//remove trailing ".js" as addVendorScript will append it
OC_Util::addVendorScript(
substr($vendorLibrary, 0, strlen($vendorLibrary) - 3),null,true);
substr($vendorLibrary, 0, -3),null,true);
}
} else {
throw new \Exception('Cannot read core/js/core.json');

Loading…
Annulla
Salva