浏览代码

! Things you can't do with empty ....

Spuds 13 年之前
父节点
当前提交
6bb963bb85
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Sources/Subs-Editor.php

+ 1 - 0
Sources/Subs-Editor.php

@@ -459,6 +459,7 @@ function html_to_bbc($text)
 		{
 			if ($s == 'size')
 			{
+				// Cast before empty chech because casting a string results in a 0 and we don't have zeros in the array! ;)
 				$v = (int) trim($v);
 				$v = empty($v) ? 1 : $v;
 				$tags[] = array('[size=' . $sizes_equivalence[$v] . ']', '[/size]');