CC-5401: Stream settings -> Can't save show source info

Typo in sprintf formatting
This commit is contained in:
denise 2013-10-11 13:22:02 -04:00
parent 7266bfa2ba
commit 4abdbfae1f
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ class Application_Form_LiveStreamingPreferences extends Zend_Form_SubForm
socket_bind($sock, 0, $dj_harbor_input_port);
} catch (Exception $e) {
$element = $this->getElement("dj_harbor_input_port");
$element->addError(sprintf(_("Port %s is not available"). $dj_harbor_input_port));
$element->addError(sprintf(_("Port %s is not available"), $dj_harbor_input_port));
$isValid = false;
}
socket_close($sock);