-
MODX Staff
- 12,272 Posts
Also, we need to make sure that upgrades install the plugin / module params for QE properly that Adam added.
Ryan Thrash, MODX Co-Founder
Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
-
MODX Staff
- 12,272 Posts
The date thing is around line 646 of manager/actions/dynamic/mutate_content.dynamic.action.php, FYI.
It looks like it’s hiding the actual input field and turning the span id="pub_date_show" into a faux input box. If this is a correct assumption, I think I’ve got a quick fix!
Ryan Thrash, MODX Co-Founder
Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
-
MODX Staff
- 12,272 Posts
And so it appears it does work that way... look for commit #592...
That leaves one bug and some internal testing as the remaining 0.9.1 issues to resolve for its release! Need some help on that bug, folks...
Ryan Thrash, MODX Co-Founder
Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
-
☆ A M B ☆
- 24,524 Posts
I’ve passed it source before, the function has these lines that will accept either just a source filename or an entire block of script. But I don’t know about the [!...!] vs [[...]] issue.
elseif (strpos(strtolower($src),"<script")!==false) $this->sjscripts[count($this->sjscripts)] = $src; // if you've fed it a full script, then use the whole thing
else $this->sjscripts[count($this->sjscripts)] = "<script type='text/javascript' language='JavaScript' src='$src'></script>"; // if not, make the tags with the source filename added