Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/be1d2bcc2748494933fb9a01740294db038e0a6b?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed path problem

preferencesAboutTextFull
Claudio Valerio 13 years ago
parent 73cbdb8fb3
commit be1d2bcc27
  1. 6
      src/core/UBPersistenceManager.cpp

@ -847,11 +847,7 @@ QString UBPersistenceManager::teacherGuideAbsoluteObjectPath(UBDocumentProxy* pD
QString UBPersistenceManager::addObjectToTeacherGuideDirectory(UBDocumentProxy* pDocumentProxy, QString pPath)
{
QString path = pPath;
//windows
//path=path.replace("file:///","");
//others
path=path.replace("file://","");
QString path = UBFileSystemUtils::removeLocalFilePrefix(pPath);
QFileInfo fi(path);
QString uuid = QUuid::createUuid();

Loading…
Cancel
Save