Changeset 25989
- Timestamp:
- 12/28/09 22:41:48 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/dmChessPlugin/lib/crafty/dmChessCrafty.php
r25986 r25989 66 66 protected function getPlayCommand($forsytheNotation) 67 67 { 68 return sprintf(" %s log=off ponder=off %s <<EOF68 return sprintf("cd %s && %s log=off ponder=off %s <<EOF 69 69 setboard %s 70 70 move … … 72 72 quit 73 73 EOF", 74 dirname($this->getOption('result_file')), 74 75 $this->getOption('path'), 75 76 $this->getCraftyLevel(), 76 77 $forsytheNotation, 77 $this->getOption('result_file')78 basename($this->getOption('result_file')) 78 79 ); 79 80 }