do not index functions in post

This commit is contained in:
Alon Zakai 2013-05-15 10:54:49 -07:00
Родитель 2b94dc6e7d
Коммит 02411b6a6a
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -261,6 +261,7 @@ var Functions = {
if (!doNotCreate) this.indexedFunctions[ident] = 0; // tell python we need this indexized
return "'{{ FI_" + toNiceIdent(ident) + " }}'"; // something python will replace later
} else {
if (!singlePhase) return 'NO_INDEX'; // Should not index functions in post
var ret = this.indexedFunctions[ident];
if (!ret) {
if (doNotCreate) return '0';