Bug #16500
closedMissing dot in typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc
0%
Description
There is a missing dot, which causes direct_mail user approval to fail.
typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc
LINE 1116
Current:
function procesSetFixed() {
if ($this->conf['setfixed']) {
Fix:
function procesSetFixed() {
if ($this->conf['setfixed.']) {
(issue imported from #M4112)
Files
Updated by Franz Holzinger about 18 years ago
Please, when you add a file, then this should only be a patch file.
Use a command like this to generate it:
diff -ru path-original/fe_adminLib.inc path-modified/fe_adminLib.inc > fe_adminLib.inc.diff
This is wrong.
see
http://typo3.org/documentation/document-library/references/doc_core_tsref/current/view/11/3/
The setfixed must be set to TRUE before the further settings will be considered.
------------------
setfixed boolean /properties
Allows set-fixed input, probably coming from a link in an infomail or notification mail.
Updated by Christoph Lemmer about 18 years ago
This is my TS
setfixed{
approve._FIELDLIST = uid,pid
DELETE._FIELDLIST = uid,pid
hidden=0
}
so it's my fault
Do I need to set
setfixed = 1
before ?
Updated by Benni Mack over 14 years ago
Yes. activate this with
setfixed = 1
Does it work for you then? I so, I will close this issue soon.
Updated by Christoph Lemmer over 14 years ago
As metioned above it could be closed.
Setting it to true first would fix it...