Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/3a4b4e79b633f4fb452a241d804e7eac132ab0b0 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed issue 900

preferencesAboutTextFull
Claudio Valerio 13 years ago
parent ed9c64afba
commit 3a4b4e79b6
  1. 3
      src/web/UBWebController.cpp

@ -725,9 +725,10 @@ void UBWebController::loadUrl(const QUrl& url)
}
else
{
bool webBrowserAlreadyInstanciated = mStackedWidget->widget(WebBrowser) != NULL;
UBApplication::applicationController->showInternet();
if (mCurrentWebBrowser && !(*mCurrentWebBrowser)) {
if (!webBrowserAlreadyInstanciated) {
(*mCurrentWebBrowser)->loadUrl(url);
}
else {

Loading…
Cancel
Save