Skip to content

Commit

Permalink
closes #96 - put backs some 'J's I have removed. JHtmlHelloworlds is …
Browse files Browse the repository at this point in the history
…only for consistency as it makes no difference because component self registers it.
  • Loading branch information
shoulders committed Oct 16, 2020
1 parent b5d97fc commit 2455ba5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion admin/helpers/html/helloworlds.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

JLoader::register('HelloworldHelper', JPATH_ADMINISTRATOR . '/components/com_helloworld/helpers/helloworld.php');

class HtmlHelloWorlds
class JHtmlHelloWorlds
{
/**
* Render the list of associated items
Expand Down
4 changes: 2 additions & 2 deletions admin/models/fields/helloworldordering.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

FormHelper::loadFieldClass('list');

class FormFieldHelloWorldOrdering extends JFormFieldList
class JFormFieldHelloWorldOrdering extends JFormFieldList
{
protected $type = 'HelloworldOrdering';
protected $type = 'helloworldordering';

/**
* Method to return the options for ordering the helloworld record
Expand Down
4 changes: 2 additions & 2 deletions admin/models/fields/helloworldparent.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

FormHelper::loadFieldClass('list');

class FormFieldHelloWorldParent extends JFormFieldList
class JFormFieldHelloWorldParent extends JFormFieldList
{
protected $type = 'HelloworldParent';
protected $type = 'helloworldparent';

/**
* Method to return the field options for the parent
Expand Down
2 changes: 1 addition & 1 deletion admin/views/helloworlds/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}
$assoc = Associations::isEnabled();
$authorFieldwidth = $assoc ? "10%" : "25%";
JLoader::register('HtmlHelloWorlds', JPATH_ADMINISTRATOR . '/components/com_helloworld/helpers/html/helloworlds.php');
JLoader::register('JHtmlHelloWorlds', JPATH_ADMINISTRATOR . '/components/com_helloworld/helpers/html/helloworlds.php');
?>
<form action="index.php?option=com_helloworld&view=helloworlds" method="post" id="adminForm" name="adminForm">
<div id="j-sidebar-container" class="span2">
Expand Down

0 comments on commit 2455ba5

Please sign in to comment.