Skip to content

Commit

Permalink
Fix bug in service page presentation.
Browse files Browse the repository at this point in the history
When a link is called in the service page, it was failing due to a missed class
caller.  Fix this, and the updater method caller so these will work properly.
  • Loading branch information
mastacontrola committed Jan 11, 2017
1 parent 921b737 commit d6b5319
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/web/lib/pages/fogconfigurationpage.class.php
Expand Up @@ -1030,7 +1030,7 @@ public function clientupdater()
. _('download the module and use it on the next ')
. _('time the service is started.')
);
foreach ((array)self::getClass('ClientUpdateManager')
foreach ((array)self::getClass('ClientUpdaterManager')
->find() as &$ClientUpdate
) {
$this->data[] = array(
Expand Down
2 changes: 1 addition & 1 deletion packages/web/lib/pages/serviceconfigurationpage.class.php
Expand Up @@ -716,7 +716,7 @@ public function editPost()
}
break;
case 'clientupdater':
self::getClass('FOGConfigurationPage')->client_updaterPost();
self::getClass('FOGConfigurationPage')->clientupdaterPost();
break;
}
if (!$Service->save()) {
Expand Down
2 changes: 1 addition & 1 deletion packages/web/management/languages/messages.pot
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-11 15:15-0500\n"
"POT-Creation-Date: 2017-01-11 16:03-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down

0 comments on commit d6b5319

Please sign in to comment.