Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/05a8d6fe74661c21a88336b641f8b0e3cbb5a4a6?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
2 deletions
src/gui/UBTeacherGuideWidget.cpp
@ -204,12 +204,15 @@ QVector<tIDataStorage*> UBTeacherGuideEditionWidget::save(int pageIndex)
data - > name = " title " ;
data - > name = " title " ;
data - > type = eElementType_UNIQUE ;
data - > type = eElementType_UNIQUE ;
data - > attributes . insert ( " value " , mpPageTitle - > text ( ) ) ;
data - > attributes . insert ( " value " , mpPageTitle - > text ( ) ) ;
if ( mpPageTitle - > text ( ) . length ( ) ) {
result < < data ;
result < < data ;
}
data = new tIDataStorage ( ) ;
data = new tIDataStorage ( ) ;
data - > name = " comment " ;
data - > name = " comment " ;
data - > type = eElementType_UNIQUE ;
data - > type = eElementType_UNIQUE ;
data - > attributes . insert ( " value " , mpComment - > text ( ) ) ;
data - > attributes . insert ( " value " , mpComment - > text ( ) ) ;
if ( mpComment - > text ( ) . length ( ) )
result < < data ;
result < < data ;
QList < QTreeWidgetItem * > children = getChildrenList ( mpAddAnActionItem ) ;
QList < QTreeWidgetItem * > children = getChildrenList ( mpAddAnActionItem ) ;