Sfoglia il codice sorgente

Merge branch 'hotfix'

version-14
mbauskar 8 anni fa
parent
commit
ab8c3644e2
2 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. +1
    -1
      frappe/__init__.py
  2. +2
    -2
      frappe/website/router.py

+ 1
- 1
frappe/__init__.py Vedi File

@@ -14,7 +14,7 @@ import os, sys, importlib, inspect, json
from .exceptions import *
from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template

__version__ = '8.7.0'
__version__ = '8.7.1'
__title__ = "Frappe Framework"

local = Local()


+ 2
- 2
frappe/website/router.py Vedi File

@@ -349,9 +349,9 @@ def sync_global_search():
frappe.flags.update_global_search.append(
dict(doctype='Static Web Page',
name=route,
content=frappe.text_type(text),
content=text_type(text),
published=1,
title=soup.title.string,
title=text_type(soup.title.string),
route=route))

except Exception:


Caricamento…
Annulla
Salva