GH#881: fix: standardize GitHub owner slug to Ultimate-Multisite#887
GH#881: fix: standardize GitHub owner slug to Ultimate-Multisite#887superdav42 merged 1 commit intomainfrom
Conversation
…ocs and code Replace all occurrences of the incorrect 'Multisite-Ultimate' slug with the canonical 'Ultimate-Multisite' across README.md, inc/class-wp-ultimo.php, and .wiki/Enhance-Integration.md. The wrong slug was causing broken badge URLs, dead installation links, and incorrect GitHub API calls for update checks. The admin notice in ultimate-multisite.php already used the correct slug; now all files match. Resolves #881
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 48 minutes and 36 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Merge SummaryIssue #881 — Review followup: PR #878 — inconsistent GitHub owner slug Outcome: B — Premise correct, fix implemented. What was done:
Verification: aidevops.sh v3.8.56 plugin for OpenCode v1.4.6 with claude-sonnet-4-6 spent 2m on this as a headless worker. Overall, 12s since this issue was created. |
🔨 Build Complete - Ready for Testing!📦 Download Build Artifact (Recommended)Download the zip build, upload to WordPress and test:
🌐 Test in WordPress Playground (Very Experimental)Click the link below to instantly test this PR in your browser - no installation needed! Login credentials: |
|
Performance Test Results Performance test results for 3c40dd9 are in 🛎️! Note: the numbers in parentheses show the difference to the previous (baseline) test run. Differences below 2% or 0.5 in absolute values are not shown. URL:
|
Summary
Fixes the incorrect
Multisite-Ultimateowner slug used throughout the codebase — it should be the canonicalUltimate-Multisite(matching the actual GitHub organization).Files changed:
README.md— 14 URL occurrences corrected (badges, installation links, contributor links)inc/class-wp-ultimo.php— 2 occurrences in GitHub API update-check URLs (functional fix).wiki/Enhance-Integration.md— 4 occurrences in discussion/support linksThe wrong slug was causing broken badges, incorrect
git cloneURLs in docs, and — critically — failed GitHub API calls when checking for plugin updates (get_latest_release()was hitting a non-existent org slug).The admin notice in
ultimate-multisite.phpalready used the correct slug; this PR aligns the rest of the codebase to match.Testing
grep -rn "Multisite-Ultimate" --include="*.md" --include="*.php"returns nothingResolves #881