Хранилища Subversion ant

Сравнить редакции

Не учитывать пробелы Редакция 570 → Редакция 571

/branches/ant/0.9.x/lib/core.php
1054,15 → 1054,17
if ($sInfo == "") {
$sInfo = "Схема репозитория";
}
$show = "<fieldset><legend>".$sInfo."</legend>\n";
if ($sSchemeID != 0) {
// Режим редактирования
$query = "SELECT * FROM ".$this->prefix."repscheme WHERE scheme_id='".$sSchemeID."'";
$rq =& $this->db->query($query);
$rq->fetchInto($element);
$show .= "<div class='inputbox'><label for='scheme'>Схема репозитория:</label> ".$this->showSchemeList("scheme", $element["scheme_id"],"innerhtml")."</div>\n";
} else {
$show .= "<div class='inputbox'><label for='scheme'>Схема репозитория:</label> <input type='text' name='scheme' id='scheme' value=''></div>\n";
}
 
$show = "<fieldset><legend>".$sInfo."</legend>\n";
$show .= "<div class='inputbox'><label for='scheme'>Схема репозитория:</label> <input type='text' name='scheme' id='scheme' value='".$this->showSchemeList("scheme", $element["scheme_id"],"innerhtml")."'></div>\n";
$show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
 
return $show;