Skip to content
Snippets Groups Projects
Commit e28299cc authored by matthiasgrimm's avatar matthiasgrimm
Browse files

redefine reference check options

This patch correct the meaning of the reference check configuration
options. They become more logical.
  refcheck    boolean   Enable/Disable the reference checker. If set
                        to '0' the existence of references is not
						checked and vica versa.
  recshow     int       defines how many references should be displayed
                        If set to '0' no references are shown at all.

This meaning is more logical. The first parameter switches the checker
on/off and the second would be set, if the user wanted to see where the
references are and how many should be displayed.

darcs-hash:20050626153207-7ef76-0800eb2e394bf1b9f4233e7698b4d894f4b58e5b.gz
parent 90eb8392
No related branches found
No related tags found
No related merge requests found
......@@ -33,8 +33,8 @@ $conf['maxseclevel'] = 3; //Up to which level create editable se
$conf['camelcase'] = 0; //Use CamelCase for linking? (I don't like it) 0|1
$conf['deaccent'] = 1; //convert accented chars to unaccented ones in pagenames?
$conf['useheading'] = 0; //use the first heading in a page as its name
$conf['refcheck'] = 5; //check for references before deleting media files
$conf['refshow'] = 0; //show where media files are still in use
$conf['refcheck'] = 1; //check for references before deleting media files
$conf['refshow'] = 0; //how many references should be shown, 5 is a good value
/* Antispam Features */
......
......@@ -356,9 +356,10 @@ function search_reference(&$data,$base,$file,$type,$lvl,$opts){
//only search txt files
if(!preg_match('#\.txt$#',$file)) return true;
//we finish after 'n' references found. The return value
//we finish after 'cnt' references found. The return value
//'false' will skip subdirectories to speed search up.
if(count($data) >= $conf['refcheck']) return false;
$cnt = $conf['refshow'] > 0 ? $conf['refshow'] : 1;
if(count($data) >= $cnt) return false;
$reg = '\{\{ *\:?'.$opts['query'].' *(\|.*)?\}\}';
search_regex($data,$base,$file,$reg,array($opts['query']));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment