mirror of
https://github.com/processwire/processwire.git
synced 2025-08-20 21:42:23 +02:00
Attempt fix issue processwire/processwire-issues#1689
This commit is contained in:
@@ -444,7 +444,7 @@ class ProcessPageEditLink extends Process implements ConfigurableModule {
|
|||||||
/** @var RepeaterPage $page */
|
/** @var RepeaterPage $page */
|
||||||
$page = $page->getForPage();
|
$page = $page->getForPage();
|
||||||
}
|
}
|
||||||
if($page->id) {
|
if($page && $page->id) {
|
||||||
$files = $this->getFilesPage($page);
|
$files = $this->getFilesPage($page);
|
||||||
}
|
}
|
||||||
asort($files);
|
asort($files);
|
||||||
@@ -497,7 +497,7 @@ class ProcessPageEditLink extends Process implements ConfigurableModule {
|
|||||||
$field->addOption('');
|
$field->addOption('');
|
||||||
$field->addOptions($files);
|
$field->addOptions($files);
|
||||||
$field->collapsed = Inputfield::collapsedYes;
|
$field->collapsed = Inputfield::collapsedYes;
|
||||||
if($this->page->id) $field->notes = $this->_('Showing files on page:') . ' **' . $this->page->url . '**';
|
if($this->page && $this->page->id) $field->notes = $this->_('Showing files on page:') . ' **' . $this->page->url . '**';
|
||||||
$field->description =
|
$field->description =
|
||||||
$this->_('Select the file from this page that you want to link to.') . ' ' .
|
$this->_('Select the file from this page that you want to link to.') . ' ' .
|
||||||
$this->_("To select a file from another page, click 'Select Page' above and choose the page you want to select a file from."); // Instruction on how to select a file from another page
|
$this->_("To select a file from another page, click 'Select Page' above and choose the page you want to select a file from."); // Instruction on how to select a file from another page
|
||||||
|
Reference in New Issue
Block a user