Skip to content

Commit

Permalink
Fixed issue #08628: Spelling mistake in English language file
Browse files Browse the repository at this point in the history
Fixed issue #08626: Superfluous PHP closing tag in "edit text elements"
  • Loading branch information
Shnoulle committed Jan 30, 2014
1 parent 911f3d8 commit dd6bf1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/controllers/admin/database.php
Expand Up @@ -447,7 +447,7 @@ function index($sa = null)
foreach($aErrors as $sAttribute=>$aStringErrors)
{
foreach($aStringErrors as $sStringErrors)
Yii::app()->setFlashMessage(sprintf($clang->gT("Question in language %s could not be cretaed with error on %s: %s"), $alang, $sAttribute,$sStringErrors),'error');
Yii::app()->setFlashMessage(sprintf($clang->gT("Question in language %s could not be created with error on %s: %s"), $alang, $sAttribute,$sStringErrors),'error');
}
}
# if (!$langqid)
Expand Down
Expand Up @@ -11,15 +11,14 @@
{
echo CHtml::tag('div', array('id' => "edittxtele-{$sLang}"), $sTabContent);
} ?>
?>
</div>

<?php if($has_permissions): ?>
<?php if($has_permissions){ ?>
<p>
<input type="submit" class="standardbtn" value="<?php $clang->eT("Save"); ?>" />
<input type="hidden" name="action" value="updatesurveylocalesettings" />
<input type="hidden" name="sid" value="<?php echo $surveyid; ?>" />
<input type="hidden" name="language" value="<?php echo $surveyls_language; ?>" />
</p>
<?php endif; ?>
<?php } ?>
</form>

0 comments on commit dd6bf1b

Please sign in to comment.