diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2007-04-23 09:36:30 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2007-04-23 09:36:30 +0000 |
| commit | 2415623b738553d0f671717b9d0d79211c120342 (patch) | |
| tree | 103c66d739d9058543a69f87af0491441a03e8be /article_history.php | |
| parent | ae3e12dbdb4f9a002928846d2392435c5b8cf1cb (diff) | |
| download | articles-2415623b738553d0f671717b9d0d79211c120342.tar.gz articles-2415623b738553d0f671717b9d0d79211c120342.tar.bz2 articles-2415623b738553d0f671717b9d0d79211c120342.zip | |
fatalError message translation standardisation: fatalError message is not translated in the function so it has to be translated when it's passed in. this allows for dynamically changed errormessages without causing duplicate master strings
Diffstat (limited to 'article_history.php')
| -rw-r--r-- | article_history.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/article_history.php b/article_history.php index 26b6652..589bc8e 100644 --- a/article_history.php +++ b/article_history.php @@ -33,7 +33,7 @@ include_once( ARTICLES_PKG_PATH.'lookup_article_inc.php' ); //vd($gContent->mPageId);vd($gContent->mInfo); if( !$gContent->isValid() || empty( $gContent->mInfo ) ) { - $gBitSystem->fatalError( "Unknown article" ); + $gBitSystem->fatalError( tra( "Unknown article" )); } // additionally we need to check if this article is a submission and see if user has perms to view it. |
