Skip to content
This repository has been archived by the owner on Nov 28, 2018. It is now read-only.

Commit

Permalink
Fixed another i18N issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Beckett committed Jan 11, 2011
1 parent 0a116a8 commit a0258c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

// Tagger Version
define('TAGGER_VERSION', '1.4.0');
define('TAGGER_NAME',__('Tagger'));

/**
* Security measure for Wolf 0.7.0+
Expand Down Expand Up @@ -42,7 +43,7 @@

Plugin::setInfos(array(
'id' => 'tagger',
'title' => 'Tagger',
'title' => TAGGER_NAME,
'description' => __('Add tags to any page and organize your website.'),
'version' => TAGGER_VERSION,
'license' => 'MIT',
Expand All @@ -52,7 +53,7 @@
'require_wolf_version' => '0.7.3')
);

Plugin::addController('tagger', 'Tagger');
Plugin::addController('tagger', TAGGER_NAME);
Behavior::add('tagger', 'tagger/tagger.php');

// Setting error display depending on debug mode or not
Expand Down

0 comments on commit a0258c4

Please sign in to comment.