Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename owncloud__theme_entitiy_name to owncloud__theme_entity_name #80

Merged
merged 1 commit into from
Jan 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1336,17 +1336,17 @@ owncloud__theme_name: 'DebOps Cloud'
owncloud__theme_name_html: '{{ owncloud__theme_name }}'


# .. envvar:: owncloud__theme_entitiy_name
# .. envvar:: owncloud__theme_entity_name
#
# Entity string for your ownCloud. For example the name of your company. This
# string is used in the footer and the copyright.
owncloud__theme_entitiy_name: 'DebOps'
owncloud__theme_entity_name: 'DebOps'


# .. envvar:: owncloud__theme_base_url
#
# Base URL to get more information about your ownCloud. By default,
# :envvar:`owncloud__theme_entitiy_name` links to this URL on the login page.
# :envvar:`owncloud__theme_entity_name` links to this URL on the login page.
# Use an empty string to use the default URL pointing to the ownCloud website.
owncloud__theme_base_url: 'https://github.com/debops/ansible-owncloud'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Fallback not possible as of 9.0.2.
* @return string entity name
*/
public function getEntity() {
return '{{ owncloud__theme_entitiy_name }}';
return '{{ owncloud__theme_entity_name }}';
}

/**
Expand Down