Code Duplication    Length = 4-5 lines in 2 locations

app/Functions/FunctionsRtl.php 2 locations

@@ 1140-1143 (lines=4) @@
1137
						if ($spacepos === false) {
1138
							$out .= $string;
1139
							$string = '';
1140
						} else {
1141
							$out .= substr($string, 0, $spacepos) . $sep;
1142
							$string = substr($string, $spacepos + 1);
1143
						}
1144
					}
1145
				} else {
1146
					// Split at space;
@@ 1145-1149 (lines=5) @@
1142
							$string = substr($string, $spacepos + 1);
1143
						}
1144
					}
1145
				} else {
1146
					// Split at space;
1147
					$out .= substr($string, 0, $spacepos) . $sep;
1148
					$string = substr($string, $spacepos + 1);
1149
				}
1150
			}
1151
		}
1152