]> git.koha-community.org Git - koha.git/commit
Bug 8849 - Error log generated when not a demo system
authorMark Tompsett <mtompset@hotmail.com>
Mon, 1 Oct 2012 08:29:22 +0000 (16:29 +0800)
committerChris Cormack <chrisc@catalyst.net.nz>
Wed, 24 Oct 2012 20:18:33 +0000 (09:18 +1300)
commit574a7ac7a86d9da495ffcdca0deecfa619f4f1dc
treedd525262b98e96bedfb0d7594e2d5320b7889b17
parentc3e3a846dc1664915f99d18531f6169ce7018e79
Bug 8849 - Error log generated when not a demo system

Changed two lines similar to:
   unless (C4::Context->config('demo') == 1) {
into lines similar to:
   unless (C4::Context->config('demo')) {
By removing the == 1, undefined = false without an error. The
value of demo is supposedly set by a koha-conf.xml variable,
but there is very little documentation on this "demo mode"
beyond the set it to 1 in koha conf for demo mode.  Also, demo
doesn't exist in the default koha-conf.xml file generated.
So anyone who knows to create it, will likely create it the
proper way and with the proper value.

Signed-off-by: wajasu <matted-34813@mypacks.net>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
admin/marctagstructure.pl