Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 925 → Rev 926

/trunk/plugins/viathinksoft/objectTypes/fourcc/OIDplusFourCC.class.php
39,7 → 39,7
$fourcc = substr($fourcc,1);
} else {
$p = strpos($fourcc,']');
$out[] = substr($fourcc,1,$p-1);
$out[] = (int)substr($fourcc,1,$p-1);
$fourcc = substr($fourcc,$p+1);
}
}
238,19 → 238,8
private function getMultiCharLiteral() {
$type = self::fourcc_transform($this->fourcc);
if ($type === false) return false;
$out = "'";
foreach ($type as $c) {
if ((($c >= 0x00) && ($c <= 0x1F)) || ($c == 0x7F)) {
// For non-printable characters use octal notation:
// \000 ... \377
$out .= "\\".str_pad(base_convert($c,10,8), 3, '0', STR_PAD_LEFT);
} else {
$out .= chr($c);
return c_literal($type);
}
}
$out .= "'";
return $out;
}
 
public function getDirectoryName() {
if ($this->isLeafNode()) {