|
From: <var...@us...> - 2021-02-22 18:44:06
|
Revision: 10258
http://sourceforge.net/p/phpwiki/code/10258
Author: vargenau
Date: 2021-02-22 18:44:04 +0000 (Mon, 22 Feb 2021)
Log Message:
-----------
Extract arguments first
Modified Paths:
--------------
trunk/lib/plugin/LinkSearch.php
Modified: trunk/lib/plugin/LinkSearch.php
===================================================================
--- trunk/lib/plugin/LinkSearch.php 2021-02-22 18:37:22 UTC (rev 10257)
+++ trunk/lib/plugin/LinkSearch.php 2021-02-22 18:44:04 UTC (rev 10258)
@@ -136,6 +136,7 @@
function run($dbi, $argstr, &$request, $basepage)
{
$args = $this->getArgs($argstr, $request);
+ extract($args);
if (($noform == '0') || ($noform == 'false')) {
$noform = false;
@@ -156,7 +157,6 @@
if (empty($args['page']))
$args['page'] = "*";
$form = $this->showForm($dbi, $request, $args);
- extract($args);
if (empty($s))
return $form;
$pagequery = new TextSearchQuery($page, $args['case_exact'], $args['regex']);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|