Fixed the live topic list after Most Viewed broke it

This commit is contained in:
Azareal 2018-09-26 18:05:25 +10:00
parent 859ed2c730
commit 9005b10be1
1 changed files with 7 additions and 6 deletions

View File

@ -2,18 +2,17 @@ package common
import (
"bytes"
"compress/gzip"
"errors"
"fmt"
"mime"
"strconv"
"strings"
"sync"
//"errors"
"compress/gzip"
"io/ioutil"
"mime"
"net/http"
"os"
"path/filepath"
"strconv"
"strings"
"sync"
"../tmpl_client"
)
@ -179,7 +178,9 @@ func (list SFileList) JSTmplInit() error {
data = replace(data, "w.Write([]byte(", "out += ")
data = replace(data, "w.Write(", "out += ")
data = replace(data, "strconv.Itoa(", "")
data = replace(data, "strconv.FormatInt(", "")
data = replace(data, "common.", "")
data = replace(data, ", 10;", "")
data = replace(data, shortName+"_tmpl_phrase_id = RegisterTmplPhraseNames([]string{", "[")
data = replace(data, "var phrases = GetTmplPhrasesBytes("+shortName+"_tmpl_phrase_id)", "let phrases = tmplPhrases[\""+tmplName+"\"];")
//data = replace(data, "var phrases = GetTmplPhrasesBytes("+shortName+"_tmpl_phrase_id)", "let phrases = tmplPhrases[\""+tmplName+"\"];\nconsole.log('tmplName:','"+tmplName+"')\nconsole.log('phrases:', phrases);")