# HG changeset patch # User Matti Hamalainen # Date 1416551062 -7200 # Node ID 7d7258904b024f13ea0b3e3735e5375ee5dca3ab # Parent 24bbd1f89794aae4576059991961b2858c69e7dd Compo interface cosmetic change. diff -r 24bbd1f89794 -r 7d7258904b02 admajax.php --- a/admajax.php Fri Nov 21 08:05:27 2014 +0200 +++ b/admajax.php Fri Nov 21 08:24:22 2014 +0200 @@ -434,7 +434,7 @@ { $sql = stPrepareSQL("SELECT * FROM compos WHERE id=%d", $compoID); if (($entry = stFetchSQL($sql)) !== false) - $strCompo = $entry["id"]." - ".chentities($entry["name"]); + $strCompo = chentities($entry["name"]); $strCurrEntry = stGetInfoOneEntryData(stGetDisplayVar("compoCurrEntry"), $compoID); $strPrevEntry = stGetInfoOneEntryData(stGetDisplayVar("compoPrevEntry"), $compoID); @@ -443,7 +443,7 @@ $strCompo = $strCurrEntry = $strCurrEntryFile = $strPrevEntry = "-"; return - $indent."
".$strCompo."
\n". + $indent."
Compo: ".$strCompo."
\n". $indent."
Current entry:
".$strCurrEntry."
\n". $indent."
Previous entry:
".$strPrevEntry."
\n"; }