Search found 1741 matches
- Thu Jul 26, 2012 9:48 pm
- Forum: [3.x][Archive] RFCs
- Topic: [RFC] Post Revisions
- Replies: 90
- Views: 131373
Re: [RFC] Post Revisions
Taking a hard-line stance here... but this is something I've thought about for a while. I don't see the point of deleting revisions, in fact I believe it defeats the entire purpose of this feature. If you're going to set up an audit trail, and that's how I view this, then you can't selectively ...
- Wed Jul 25, 2012 11:55 pm
- Forum: General Development Discussion
- Topic: [RFC] Release Strategy Following 3.1
- Replies: 30
- Views: 43947
Re: [RFC] Release Strategy Following 3.1
The development team has always been historically "small" - but these days it's at its largest "ever". Anyone can contribute code, etc. And to be honest team size isn't "really" the issue (I use quotes intentionally). The proposal to implement specific (unwavering) merge windows and point (alpha ...
- Wed Jul 25, 2012 11:50 pm
- Forum: [3.x] Discussion
- Topic: phpBB info Thanks in ACP
- Replies: 10
- Views: 15897
Re: phpBB info Thanks in ACP
Please send all cash, gold, models, beach side properties and large yachts to ... 
- Tue Jul 24, 2012 11:31 pm
- Forum: [3.x] Discussion
- Topic: Question about the unread pms
- Replies: 5
- Views: 9482
Re: Question about the unread pms
And exactly what I said ... so it's doing what it was intended to do
- Tue Jul 24, 2012 9:27 pm
- Forum: [3.x] Discussion
- Topic: Question about the unread pms
- Replies: 5
- Views: 9482
Re: Question about the unread pms
Unless things have changed a "new pm" is shown until you visit the private message panel in UCP. Once you've visited that, it's no longer new - you're deemed to have seen it. Now it may still be unread because of course you may not have clicked on it. Not everyone immediately clicks on the new pm to ...
- Mon Jul 23, 2012 6:23 pm
- Forum: [3.x] Discussion
- Topic: Add Topic icons to "Last topic title in forum list"
- Replies: 7
- Views: 10805
Re: Add Topic icons to "Last topic title in forum list"
-1 as a default. Make it available to template designers maybe (if it's not already, can't remember), but not in proSilver.
- Mon Jul 23, 2012 3:16 pm
- Forum: [3.x][Archive] RFCs
- Topic: [RFC] Global template variable for user avatar
- Replies: 38
- Views: 52691
Re: [RFC] Global template variable for user avatar
That's an array you can loop over accessing the elements it contains. This RFC adds the following capability:
<!-- BEGIN somerow -->
<ul>
<li>{somerow.VAR1[element1]}</li>
<li>{somerow.VAR1[element2]}</li>
</ul>
<!-- END somerow -->
// Loop twice
for ($i = 0; $i < 2; $i++)
{
$template ...
<!-- BEGIN somerow -->
<ul>
<li>{somerow.VAR1[element1]}</li>
<li>{somerow.VAR1[element2]}</li>
</ul>
<!-- END somerow -->
// Loop twice
for ($i = 0; $i < 2; $i++)
{
$template ...
- Mon Jul 23, 2012 1:18 pm
- Forum: [3.x][Archive] RFCs
- Topic: [RFC] Global template variable for user avatar
- Replies: 38
- Views: 52691
Re: [RFC] Global template variable for user avatar
Yeah, this is why I favoured something other than a dot since it's not a block, you can't iterate over the content of the array, only access specific elements. Yeah, it handles multidimensional arrays.
- Sun Jul 22, 2012 7:06 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Pagination as <ul> list
- Replies: 42
- Views: 90709
Re: [RFC|Merged] Pagination as <ul> list
As I say - my preference is to have readable templates - as opposed to page source which may have some extra newlines. Have you looked at pagination.html? I imagine you'll see why those extra newlines exist. If they shouldn't be there then I'll happily alter said templates - but it'll be at the ...
- Sun Jul 22, 2012 6:13 pm
- Forum: [3.x][Archive] RFCs
- Topic: [RFC] Global template variable for user avatar
- Replies: 38
- Views: 52691
Re: [RFC] Global template variable for user avatar
Currently the PR is running with [] lowercase element names.