[TYPO3-core] RFC: #12872: Use "strong" instead of "b"
Sebastian Gebhard
sebastian.gebhard at gmail.com
Tue Dec 1 15:00:14 CET 2009
+1 for replacing <b> by <strong>
It seems another change slided into your patch:
Starting in line 27 of your .diff-file:
Index: t3lib/class.t3lib_cs.php
===================================================================
--- t3lib/class.t3lib_cs.php (revision 6617)
+++ t3lib/class.t3lib_cs.php (working copy)
@@ -660,7 +660,7 @@
foreach($array as $key => $value) {
if (is_array($array[$key])) {
$this->convArray($array[$key],$fromCS,$toCS,$useEntityForNoChar);
- } else {
+ } elseif (is_string($array[$key])) {
$array[$key] = $this->conv($array[$key],$fromCS,$toCS,$useEntityForNoChar);
}
}
This is not related to <b>/<strong>, is it?
More information about the TYPO3-team-core
mailing list