Changeset 9187
- Timestamp:
- 12/02/08 12:02:08 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9186 r9187 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/12/02 Daniela Dorner 22 23 * datacenter/db/showplots.php: 24 - bugfix: added removing of spaces in seq-string 25 - changed number of star-tabs from 19 to 20 (temporary) 26 27 20 28 21 29 2008/12/02 Thomas Bretz -
trunk/MagicSoft/Mars/datacenter/db/showplots.php
r9176 r9187 14 14 $seq=0; 15 15 if (!empty($_GET["seq"])) 16 $seq= $_GET["seq"];16 $seq=str_replace(" ", "", $_GET["seq"]); 17 17 $tabnum=1; 18 18 if (!empty($_GET["tabnum"])) … … 39 39 $signaltabs=14; 40 40 $calibtabs=11; 41 $startabs= 19;41 $startabs=20; 42 42 43 43 //in case the tab does not exist, because it's one the far
Note:
See TracChangeset
for help on using the changeset viewer.