|
From: <var...@us...> - 2021-09-17 11:07:13
|
Revision: 10561
http://sourceforge.net/p/phpwiki/code/10561
Author: vargenau
Date: 2021-09-17 11:07:11 +0000 (Fri, 17 Sep 2021)
Log Message:
-----------
Avoid PHP warning
Modified Paths:
--------------
trunk/lib/PageList.php
Modified: trunk/lib/PageList.php
===================================================================
--- trunk/lib/PageList.php 2021-09-17 10:48:53 UTC (rev 10560)
+++ trunk/lib/PageList.php 2021-09-17 11:07:11 UTC (rev 10561)
@@ -410,7 +410,7 @@
if (!empty($revision_handle->_data['%pagedata'])) {
$revision_handle->_data['%pagedata']['_cached_html'] = '';
}
- $c =&$revision_handle->getPackedContent();
+ $c = $revision_handle->getPackedContent();
if ($this->_field == 'hi_content') {
$search = $this->search;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|