till před 13 roky
rodič
revize
4c2da57140
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/Composer/Repository/Vcs/SvnDriver.php

+ 1 - 1
src/Composer/Repository/Vcs/SvnDriver.php

@@ -96,7 +96,7 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
                 $this->svnPassword = $this->io->ask("Password");
                 $this->useAuth     = true;
 
-                $cacheTrueAnswers = array('yes', 'y', 'true', 'ja', 'si', 'da');
+                static $cacheTrueAnswers = array('yes', 'y', 'true', 'ja', 'si', 'da');
 
                 $cacheAnswer = strtolower($this->io->ask("Should we Subversion cache these credentials?", 'no'));
                 if (in_array($cacheAnswer, $cacheTrueAnswers)) {