]> git.pld-linux.org Git - packages/dokuwiki-plugin-data.git/commitdiff
- add plural.patch
authorElan Ruusamäe <glen@pld-linux.org>
Tue, 4 Aug 2009 08:07:49 +0000 (08:07 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dokuwiki-plugin-data.spec -> 1.6
    plural.patch -> 1.1

dokuwiki-plugin-data.spec
plural.patch [new file with mode: 0644]

index 63393b14c8183e716effe0e8f1b873d230a3f198..ea838f05575278f212030228640b28c80767299c 100644 (file)
@@ -9,6 +9,7 @@ Source0:        http://dev.splitbrain.org/download/snapshots/data-plugin-latest.tgz
 # Source0-md5: 6a3ee212496a60a343b62246e8002957
 URL:           http://wiki.splitbrain.org/plugin:data
 Patch0:                interwiki.patch
+Patch1:                plural.patch
 BuildRequires: rpmbuild(macros) >= 1.520
 Requires:      dokuwiki >= 20090214b-5
 Requires:      php(sqlite)
@@ -31,6 +32,7 @@ different to the repository plugin.
 %prep
 %setup -q -n %{plugin}
 %patch0 -p1
+%patch1 -p1
 
 # cleanup backups after patching
 find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
diff --git a/plural.patch b/plural.patch
new file mode 100644 (file)
index 0000000..f3c4e37
--- /dev/null
@@ -0,0 +1,18 @@
+--- data/helper.php    2009-08-04 11:06:52.614221159 +0300
++++ tmp/helper.php     2009-08-04 11:06:34.000000000 +0300
+@@ -148,10 +148,13 @@
+      * @returns array with key, type, ismulti, title
+      */
+     function _column($col){
+-        if(strtolower(substr($col,-1)) == 's'){
++        if (strtolower(substr($col,-2)) == 'es') {
++            $col = substr($col,0,-2);
++            $multi = true;
++        } elseif (strtolower(substr($col,-1)) == 's') {
+             $col = substr($col,0,-1);
+             $multi = true;
+-        }else{
++        } else {
+             $multi = false;
+         }
+         list($key,$type) = explode('_',$col,2);
This page took 0.213103 seconds and 4 git commands to generate.