Popravek sumnikov pri prevodu diferenciala, opombe na mariadb, popravek prevajanja texta pri besedilu

This commit is contained in:
pero1203 2021-07-29 10:30:36 +02:00
parent 8c6c12d10c
commit 3eb1a45db2
2 changed files with 13 additions and 1 deletions

View File

@ -3941,8 +3941,15 @@ class Branching {
// sirina vnosnega polja // sirina vnosnega polja
$input = $taWidth; $input = $taWidth;
if ($this->lang_id != null) {
save('lang_id', $this->lang_id);
$naslov = \App\Controllers\LanguageController::getInstance()->srv_language_vrednost($row1['id']);
if ($naslov != '') $row1['naslov'] = $naslov;
}
if($row['orientation'] == 3) if($row['orientation'] == 3)
echo '<tr>'; echo '<tr>';
echo '<td class="grid_question" style="width: '.$cell.'%; text-align:left" id="f_'.$row1['id'].'">'; echo '<td class="grid_question" style="width: '.$cell.'%; text-align:left" id="f_'.$row1['id'].'">';
if($row['text_orientation'] == 1 || $row['text_orientation'] == 3){ if($row['text_orientation'] == 1 || $row['text_orientation'] == 3){

View File

@ -9528,4 +9528,9 @@ CREATE TABLE srv_data_textgrid_archive2 LIKE srv_data_textgrid_archive1;
CREATE TABLE srv_user_grupa_archive2 LIKE srv_user_grupa_archive1; CREATE TABLE srv_user_grupa_archive2 LIKE srv_user_grupa_archive1;
CREATE TABLE srv_tracking_archive2 LIKE srv_tracking_archive1; CREATE TABLE srv_tracking_archive2 LIKE srv_tracking_archive1;
UPDATE misc SET value='23.07.19' WHERE what="version"; UPDATE misc SET value='21.07.23' WHERE what="version";
ALTER TABLE srv_language_vrednost CHANGE naslov2 naslov2 TEXT character set utf8 NOT NULL;
ALTER TABLE srv_language_spremenljivka CHANGE info info TEXT character set utf8 NOT NULL;
UPDATE misc SET value='21.07.29' WHERE what="version";