<div dir="ltr">The documentation for GetClassSortKey says<div><div><br></div><div>* Concatenates class and item part.<br></div><div>* Converts to uppercase.</div><div>* Removes leading and trailing whitespace and '/'</div><div>* Separates alphabetic prefix from the rest of the call number</div><div>* Splits into tokens on whitespaces and periods.</div><div>* Leaves first digit group as is.</div><div>...</div></div><div><br></div><div>this means that callnumbers</div><div><br></div><div>9.1 => 9_100000000000000</div><div>80.1 => 80_100000000000000</div><div><div><div>700.1 => 700_100000000000000</div></div></div><div><br></div><div>when sorted ascending by cn_sort</div><div><br></div><div>700.1 => 700_100000000000000<br></div><div>80.1 =>  80_100000000000000<br></div><div>9.1 => 9_100000000000000<br></div><div><br></div><div>Shouldn't these be zero padded to 3 digits, so that they sort as follows?</div><div><br></div><div><div>009_100000000000000</div></div><div><div>080_100000000000000</div></div><div>700_100000000000000<br></div><div><br></div><div><br></div></div>