We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
La fonction plxUtils::showMsg n'est pas codé correctement par rapport à PluCss.
Elle utilise ce code
public static function showMsg($msg, $class='') { if($class=='') echo '<p class="msg">'.$msg.'</p>'; else echo '<p class="'.$class.'">'.$msg.'</p>'; }
Alors que pour fonctionner correction il faudrait que le code soit
public static function showMsg($msg, $class='') { if($class=='') echo '<div class="alert blue"><strong>'.$msg.'</strong></div>'; else echo '<div class="'.$class.'"><strong>'.$msg.'</strong></div>'; }
Voir paragraphe "Alerte" sur http://plucss.pluxml.org/#other-components
The text was updated successfully, but these errors were encountered:
Edit showMsg method for using it with PluCss
13af1e4
See pluxml#246
Edit showMsg for using it with PluCss
9a75660
implémenté
Sorry, something went wrong.
c4950ca
No branches or pull requests
La fonction plxUtils::showMsg n'est pas codé correctement par rapport à PluCss.
Elle utilise ce code
Alors que pour fonctionner correction il faudrait que le code soit
Voir paragraphe "Alerte" sur http://plucss.pluxml.org/#other-components
The text was updated successfully, but these errors were encountered: