Browse Source

tools/inc/lib/jsgettext/: apply fixes from bugtracker

tags/vichan-devel-4.0-gold
czaks 11 years ago
parent
commit
f7d7981248
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      tools/inc/lib/jsgettext/jsgettext.php

+ 6
- 2
tools/inc/lib/jsgettext/jsgettext.php View File

@@ -10,7 +10,7 @@
'-k' => '_'
);
$len = count($args);
$i = 0;
$i = 1;
while ($i < $len) {
if (preg_match('#^-[a-z]$#i', $args[$i])) {
$options[$args[$i]] = isset($args[$i+1]) ? trim($args[$i+1]) : true;
@@ -26,7 +26,11 @@

$options = buildOptions($argv);

if (!file_exists($options['-o']) || !is_writable($options['-o'])) {
if (!file_exists($options['-o'])) {
touch($options['-o']);
}

if (!is_writable($options['-o'])) {
die("Invalid output file name. Make sure it exists and is writable.");
}



Loading…
Cancel
Save