From 30f50556c130e272d9eb6ddcd11ea70a18a4e711 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sat, 17 Sep 2011 12:46:31 -0400
Subject: [PATCH] - Fix locked folder rename option on servers supporting RFC2086 only (#1488089)
---
program/include/rcube_result_set.php | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/program/include/rcube_result_set.php b/program/include/rcube_result_set.php
index 435ae72..1036160 100644
--- a/program/include/rcube_result_set.php
+++ b/program/include/rcube_result_set.php
@@ -5,7 +5,7 @@
| program/include/rcube_result_set.php |
| |
| This file is part of the Roundcube Webmail client |
- | Copyright (C) 2006-2010, Roundcube Dev. - Switzerland |
+ | Copyright (C) 2006-2010, The Roundcube Dev Team |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
@@ -44,27 +44,27 @@
{
$this->records[] = $rec;
}
-
+
function iterate()
{
return $this->records[$this->current++];
}
-
+
function first()
{
$this->current = 0;
return $this->records[$this->current++];
}
-
+
// alias for iterate()
function next()
{
return $this->iterate();
}
-
+
function seek($i)
{
$this->current = $i;
}
-
+
}
--
Gitblit v1.9.1